nix-ld: use pname+version (#342540)

This commit is contained in:
Jörg Thalheim 2024-09-18 15:48:42 +02:00 committed by GitHub
commit e795e939aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,13 +6,14 @@
lib,
}:
rustPlatform.buildRustPackage {
name = "nix-ld";
rustPlatform.buildRustPackage rec {
pname = "nix-ld";
version = "2.0.0";
src = fetchFromGitHub {
owner = "mic92";
repo = "nix-ld";
rev = "2.0.0";
rev = version;
hash = "sha256-rmSXQ4MYQe/OFDBRlqqw5kyp9b/aeEg0Fg9c167xofg=";
};