nixpkgs/pkgs/tools/package-management/nix-prefetch/default.nix

83 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, installShellFiles, makeWrapper, asciidoc
, docbook_xml_dtd_45, git, docbook_xsl, libxml2, libxslt, coreutils, gawk
, gnugrep, gnused, jq, nix, fetchpatch }:
2019-02-19 17:46:33 +00:00
let
2021-01-15 09:19:50 +00:00
binPath = lib.makeBinPath [ coreutils gawk git gnugrep gnused jq nix ];
in stdenv.mkDerivation rec {
2019-02-19 17:46:33 +00:00
pname = "nix-prefetch";
2021-01-15 14:07:23 +00:00
version = "0.4.0";
2019-02-19 17:46:33 +00:00
src = fetchFromGitHub {
owner = "msteen";
repo = "nix-prefetch";
2020-01-16 09:17:00 +00:00
rev = version;
2021-01-15 14:07:23 +00:00
sha256 = "11792677zyi06jw641xi9aywwgh9002b8406w6qids212c14va6n";
# the stat call has to be in a subshell or we get the current date
extraPostFetch = ''
echo $(stat -c %Y $out) > $out/.timestamp
'';
2019-02-19 17:46:33 +00:00
};
patches = [
# Fix input_type regex for macOS systems: https://github.com/msteen/nix-prefetch/pull/24
(fetchpatch {
url = "https://github.com/msteen/nix-prefetch/commit/08282891bdb108e886eaf39be2030ba1feda1cb1.patch";
sha256 = "1v6ask54ind6f3784pbncv0dfg6draaaicg0q46jfvp0lafms70x";
})
];
postPatch = ''
lib=$out/lib/${pname}
substituteInPlace doc/nix-prefetch.1.asciidoc \
--subst-var-by version $version
substituteInPlace src/main.sh \
--subst-var-by lib $lib \
--subst-var-by version $version
substituteInPlace src/tests.sh \
--subst-var-by bin $out/bin
'';
2019-02-19 17:46:33 +00:00
nativeBuildInputs = [
asciidoc
docbook_xml_dtd_45
docbook_xsl
installShellFiles
libxml2
libxslt
2019-02-19 17:46:33 +00:00
makeWrapper
];
dontConfigure = true;
2019-02-19 17:46:33 +00:00
buildPhase = ''
a2x -a revdate=$(date --utc --date=@$(cat $src/.timestamp) +%d/%m/%Y) \
-f manpage doc/nix-prefetch.1.asciidoc
2019-02-19 17:46:33 +00:00
'';
installPhase = ''
install -Dm555 -t $lib src/*.sh
install -Dm444 -t $lib lib/*
2019-02-19 17:46:33 +00:00
makeWrapper $lib/main.sh $out/bin/${pname} \
--prefix PATH : ${binPath}
2019-02-19 17:46:33 +00:00
installManPage doc/nix-prefetch.?
2019-02-19 17:46:33 +00:00
installShellCompletion --name ${pname} contrib/nix-prefetch-completion.{bash,zsh}
2019-02-19 17:46:33 +00:00
2020-01-16 09:17:00 +00:00
mkdir -p $out/share/doc/${pname}/contrib
cp -r contrib/hello_rs $out/share/doc/${pname}/contrib
2019-02-19 17:46:33 +00:00
'';
meta = with lib; {
2019-02-19 17:46:33 +00:00
description = "Prefetch any fetcher function call, e.g. package sources";
license = licenses.mit;
maintainers = with maintainers; [ msteen ];
inherit (src.meta) homepage;
2019-02-19 17:46:33 +00:00
};
}