summary refs log tree commit diff
path: root/pkgs/build-support/nix-prefetch-tools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/nix-prefetch-tools/default.nix')
-rw-r--r--pkgs/build-support/nix-prefetch-tools/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/build-support/nix-prefetch-tools/default.nix b/pkgs/build-support/nix-prefetch-tools/default.nix
deleted file mode 100644
index de47b23925f0..000000000000
--- a/pkgs/build-support/nix-prefetch-tools/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv}:
-stdenv.mkDerivation {
-  name = "nix-prefetch-tools";
-  src = "";
-  srcRoot=".";
-  prePhases = "undefUnpack";
-  undefUnpack = ''
-    unpackPhase () { :; };
-  '';
-  installPhase = ''
-    mkdir -p $out/bin
-    cp ${../fetchbzr/nix-prefetch-bzr} $out/bin
-    cp ${../fetchcvs/nix-prefetch-cvs} $out/bin
-    cp ${../fetchgit/nix-prefetch-git} $out/bin
-    cp ${../fetchhg/nix-prefetch-hg} $out/bin
-    cp ${../fetchsvn/nix-prefetch-svn} $out/bin
-    chmod a+x $out/bin/*
-  '';
-  meta = {
-    description = ''
-      A package to include all the NixPkgs prefetchers
-    '';
-    maintainers = with stdenv.lib.maintainers; [raskin];
-    platforms = with stdenv.lib.platforms; unix;
-    # Quicker to build than to download, I hope
-    hydraPlatforms = [];
-  };
-}