summary refs log tree commit diff
path: root/pkgs/development/pure-modules/gen/default.nix
diff options
context:
space:
mode:
authorAlastair Pharo <asppsa@gmail.com>2015-05-26 16:58:18 +1000
committerAlastair Pharo <asppsa@gmail.com>2015-05-26 17:51:07 +1000
commit47aeaf9d04aa53202ed7ac9c7bf17799af100793 (patch)
treeb6cb47a8286f93d4eb4d5a7648ce6c48cb38e424 /pkgs/development/pure-modules/gen/default.nix
parenta92271f195f1490ca7da2b6ac3e1c6b38975c529 (diff)
downloadnixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.gz
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.bz2
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.lz
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.xz
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.tar.zst
nixlib-47aeaf9d04aa53202ed7ac9c7bf17799af100793.zip
Fairly complete set of packages for Pure
Diffstat (limited to 'pkgs/development/pure-modules/gen/default.nix')
-rw-r--r--pkgs/development/pure-modules/gen/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/pure-modules/gen/default.nix b/pkgs/development/pure-modules/gen/default.nix
new file mode 100644
index 000000000000..082a8c88c61e
--- /dev/null
+++ b/pkgs/development/pure-modules/gen/default.nix
@@ -0,0 +1,25 @@
+{ lib, stdenv, fetchurl,
+  pkgconfig, pure, haskellPackages }:
+
+stdenv.mkDerivation rec {
+  baseName = "gen";
+  version = "0.20";
+  name = "pure-${baseName}-${version}";
+
+  src = fetchurl {
+    url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
+    sha256 = "cfadd99a378b296325937d2492347611cc1e1d9f24594f91f3c2293eca01a4a8";
+  };
+
+  hsEnv = haskellPackages.ghcWithPackages (hsPkgs : [hsPkgs.language-c]);
+  buildInputs = [ pkgconfig hsEnv pure ];
+  makeFlags = "libdir=$(out)/lib prefix=$(out)/";
+
+  meta = {
+    description = "Pure interface generator";
+    homepage = http://puredocs.bitbucket.org/pure-gen.html;
+    license = stdenv.lib.licenses.free;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ asppsa ];
+  };
+}