Unverified Commit c048c3fa authored by a-n-n-a-l-e-e's avatar a-n-n-a-l-e-e Committed by GitHub
Browse files

Merge pull request #288358 from D3vil0p3r/patch-12

libewf-legacy: fix pname
parents 6fca7fea a02a0823
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
}
})