2015-11-21 12:56:56 +00:00
|
|
|
{ stdenv, makeWrapper, buildEnv,
|
2015-11-16 10:53:29 +00:00
|
|
|
git, subversion, mercurial, bazaar, cvs, unzip, curl, gnused, coreutils
|
|
|
|
}:
|
2014-06-10 15:36:41 +00:00
|
|
|
|
2015-11-21 12:56:56 +00:00
|
|
|
let mkPrefetchScript = tool: src: deps:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nix-prefetch-${tool}";
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2014-06-10 15:36:41 +00:00
|
|
|
|
2014-06-22 09:42:34 +00:00
|
|
|
local wrapArgs=""
|
2015-11-21 12:56:56 +00:00
|
|
|
cp ${src} $out/bin/$name;
|
|
|
|
for dep in ${stdenv.lib.concatStringsSep " " deps}; do
|
2014-06-22 09:42:34 +00:00
|
|
|
wrapArgs="$wrapArgs --prefix PATH : $dep/bin"
|
2014-06-21 03:05:48 +00:00
|
|
|
done
|
2014-06-22 09:42:34 +00:00
|
|
|
wrapArgs="$wrapArgs --prefix PATH : ${gnused}/bin"
|
2015-01-15 02:24:06 +00:00
|
|
|
wrapArgs="$wrapArgs --set HOME : /homeless-shelter"
|
2014-06-21 03:05:48 +00:00
|
|
|
wrapProgram $out/bin/$name $wrapArgs
|
2015-11-21 12:56:56 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Script used to obtain source hashes for fetch${tool}";
|
|
|
|
maintainers = with maintainers; [ bennofs ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in rec {
|
|
|
|
nix-prefetch-bzr = mkPrefetchScript "bzr" ../../../build-support/fetchbzr/nix-prefetch-bzr [bazaar];
|
|
|
|
nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [cvs];
|
|
|
|
nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [git coreutils];
|
|
|
|
nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [mercurial];
|
|
|
|
nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [subversion];
|
|
|
|
nix-prefetch-zip = mkPrefetchScript "zip" ../../../build-support/fetchzip/nix-prefetch-zip [unzip curl];
|
|
|
|
|
|
|
|
nix-prefetch-scripts = buildEnv {
|
|
|
|
name = "nix-prefetch-scripts";
|
|
|
|
|
|
|
|
paths = [ nix-prefetch-bzr nix-prefetch-cvs nix-prefetch-git nix-prefetch-hg nix-prefetch-svn nix-prefetch-zip ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Collection of all the nix-prefetch-* scripts which may be used to obtain source hashes";
|
|
|
|
maintainers = with maintainers; [ bennofs ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
2014-06-10 15:36:41 +00:00
|
|
|
};
|
2014-06-21 03:05:48 +00:00
|
|
|
}
|