1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libewf-legacy: fix pname

This commit is contained in:
D3vil0p3r 2024-02-12 20:12:33 +01:00
parent 308f28af26
commit a02a082376

View file

@ -9,12 +9,12 @@
, bzip2
}:
stdenv.mkDerivation rec {
pname = "libewf-ewf";
stdenv.mkDerivation (finalAttrs: {
pname = "libewf-legacy";
version = "20140814";
src = fetchurl {
url = "https://github.com/libyal/libewf-legacy/releases/download/${version}/libewf-${version}.tar.gz";
url = "https://github.com/libyal/libewf-legacy/releases/download/${finalAttrs.version}/libewf-${finalAttrs.version}.tar.gz";
hash = "sha256-OM3QXwnaIDeo66UNjzmu6to53SxgCMn/rE9VTPlX5BQ=";
};
@ -29,4 +29,4 @@ stdenv.mkDerivation rec {
maintainers = with lib.maintainers; [ d3vil0p3r ];
platforms = lib.platforms.unix;
};
}
})