summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-29 16:19:57 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-29 16:19:57 +0000
commit210ba6316e116b57a22c44b5a6abcfc6efafbc11 (patch)
tree2ba378b7c29bc223d5b8bf6528eecb596f184414 /pkgs/tools/misc
parentfc3e7b8f7c7464b85d3b512f7ccfbd621566cb2d (diff)
downloadnixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar.gz
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar.bz2
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar.lz
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar.xz
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.tar.zst
nixlib-210ba6316e116b57a22c44b5a6abcfc6efafbc11.zip
* Urgh. Some files that had been deleted in the trunk came back
  through the stdenv-updates merge (probably because they had been
  modified in the branch).

svn path=/nixpkgs/trunk/; revision=15403
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/hg2git/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/misc/hg2git/default.nix b/pkgs/tools/misc/hg2git/default.nix
deleted file mode 100644
index 291391b67191..000000000000
--- a/pkgs/tools/misc/hg2git/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-args: with args;
-stdenv.mkDerivation {
-  name = "hg2git";
-
-  src = sourceByName "hg2git";
-
-  buildInputs =([mercurial.python mercurial makeWrapper]);
-
-  installPhase = ''
-    ensureDir $out/bin;
-    cp hg2git.sh hg2git.py $out/bin
-    cat >> $out/bin/hg2git-doc << EOF
-    #!${coreutils}/bin/cat
-    $(cat hg2git.txt)
-    EOF
-    chmod +x $out/bin/hg2git-doc
-    wrapProgram $out/bin/hg2git.sh \
-      --set PYTHONPATH "$(echo ${mercurial}/lib/python*/site-packages)"
-  '';
-
-  meta = {
-      description = "mercurial to git one way conversion";
-      homepage = "http://git.grml.org/?p=hg-to-git.git;a=summary";
-      license = "?"; # the .py file is GPLv2
-  };
-}