summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-03-21 03:54:50 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-03-21 03:54:50 +0000
commit94113ffd615eca9b17afd12dc8c22f68a079bbb7 (patch)
treecaf5abd43ee601d3c8524c8b1fa702258adaa8f0 /pkgs/development/tools/documentation
parent1061800db41d6b0f23bc9cbd357117ebedd8748a (diff)
downloadnixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar.gz
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar.bz2
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar.lz
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar.xz
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.tar.zst
nixpkgs-94113ffd615eca9b17afd12dc8c22f68a079bbb7.zip
hsc2hs moved to the right place
svn path=/nixpkgs/trunk/; revision=11249
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/hs2hs/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/tools/documentation/hs2hs/default.nix b/pkgs/development/tools/documentation/hs2hs/default.nix
deleted file mode 100644
index cfa9e3b56f6..00000000000
--- a/pkgs/development/tools/documentation/hs2hs/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-#TODO write a function (abstraction)
-args: with args;
-args.stdenv.mkDerivation {
-  name = "hsc2hs-darcs";
-
-  src = bleedingEdgeRepos.sourceByName "hsc2hs";
-
-  phases = "unpackPhase buildPhase";
-
-  buildPhase  = ''
-    ghc --make Setup.*hs -o setup
-    ensureDir \out
-     nix_ghc_pkg_tool join local-pkg-db
-    ./setup configure --prefix=$out --package-db=local-pkg-db
-    ./setup build
-    ./setup install
-  '';
-
-  buildInputs = (with args; [ghc] ++ libs);
-
-  meta = {
-      description = "automate some parts of the process of writing Haskell bindings to C code";
-      homepage = http://www.flapjax-lang.org/;
-      license = "BSD3";
-  };
-}