nix-prefetch: make fit for flakes
This commit is contained in:
parent
1ae9146803
commit
346874b79e
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, installShellFiles, makeWrapper, asciidoc
|
{ stdenv, fetchFromGitHub, installShellFiles, makeWrapper, asciidoc
|
||||||
, docbook_xml_dtd_45, git, docbook_xsl, libxml2, libxslt, coreutils, gawk
|
, docbook_xml_dtd_45, git, docbook_xsl, libxml2, libxslt, coreutils, gawk
|
||||||
, gnugrep, gnused, jq, nix }:
|
, gnugrep, gnused, jq, nix, fetchpatch }:
|
||||||
|
|
||||||
let
|
let
|
||||||
binPath = stdenv.lib.makeBinPath [ coreutils gawk git gnugrep gnused jq nix ];
|
binPath = stdenv.lib.makeBinPath [ coreutils gawk git gnugrep gnused jq nix ];
|
||||||
@ -20,6 +20,14 @@ in stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix compatibility with nixUnstable: https://github.com/msteen/nix-prefetch/pull/8
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/msteen/nix-prefetch/commit/817a7695d98663386fa27a6c04d1617e0a83e1ab.patch";
|
||||||
|
sha256 = "1zfgvafg30frwrh56k2wj4g76cljyjylm47ll60ms0yfx55spa7x";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
lib=$out/lib/${pname}
|
lib=$out/lib/${pname}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user