summary refs log tree commit diff
path: root/pkgs/development/pure-modules
diff options
context:
space:
mode:
authorAlastair Pharo <asppsa@gmail.com>2014-10-14 21:21:36 +1100
committerAlastair Pharo <asppsa@gmail.com>2014-10-14 21:21:36 +1100
commitd147759af7f46d0888152a6c1e21fcd252fedfc6 (patch)
tree81b463758fea2f61eaf80b5f0deb035fd62dcfe9 /pkgs/development/pure-modules
parent3ce9467f49464d505ed5901c04d10f721cf9914b (diff)
downloadnixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar.gz
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar.bz2
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar.lz
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar.xz
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.tar.zst
nixpkgs-d147759af7f46d0888152a6c1e21fcd252fedfc6.zip
Add pure-gsl package
Diffstat (limited to 'pkgs/development/pure-modules')
-rw-r--r--pkgs/development/pure-modules/pure-gsl/default.nix28
-rw-r--r--pkgs/development/pure-modules/pure-gsl/setup-hook.sh2
2 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/pure-modules/pure-gsl/default.nix b/pkgs/development/pure-modules/pure-gsl/default.nix
new file mode 100644
index 00000000000..bbad1e380d5
--- /dev/null
+++ b/pkgs/development/pure-modules/pure-gsl/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pure, pkgconfig, gsl }:
+
+stdenv.mkDerivation {
+  name = "pure-gsl-0.12";
+  src = fetchurl {
+    url = https://bitbucket.org/purelang/pure-lang/downloads/pure-gsl-0.12.tar.gz;
+    sha256 = "06bdd873d5417d90ca35093056a060b77365123ed24c3ac583cd3922d4c78a75";
+  };
+
+  buildInputs = [ pkgconfig ];
+  propagatedBuildInputs = [ pure gsl ];
+
+  installPhase = ''
+    mkdir -p $out/lib/pure/gsl
+    install gsl.pure gsl$(pkg-config pure --variable DLL) $out/lib/pure
+    install gsl/*.pure $out/lib/pure/gsl
+  '';
+
+  setupHook = ./setup-hook.sh;
+
+  meta = {
+    description = "GNU Scientific Library interface for Pure";
+    homepage = http://puredocs.bitbucket.org/pure-gsl.html;
+    license = stdenv.lib.licenses.gpl3Plus;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ asppsa ];
+  };
+}
\ No newline at end of file
diff --git a/pkgs/development/pure-modules/pure-gsl/setup-hook.sh b/pkgs/development/pure-modules/pure-gsl/setup-hook.sh
new file mode 100644
index 00000000000..efaa2211ae6
--- /dev/null
+++ b/pkgs/development/pure-modules/pure-gsl/setup-hook.sh
@@ -0,0 +1,2 @@
+addToSearchPath PURE_INCLUDE $1/lib/pure
+addToSearchPath PURE_LIBRARY $1/lib/pure