summary refs log tree commit diff
path: root/pkgs/development/tools/imatix_gsl
diff options
context:
space:
mode:
authorNathan Moos <moosingin3space@gmail.com>2016-04-28 16:53:00 -0400
committerNathan Moos <moosingin3space@gmail.com>2016-04-28 18:26:10 -0400
commit6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f (patch)
tree18c37da91d51ce533a87a3cb16986490d4e1fa5a /pkgs/development/tools/imatix_gsl
parent89ce5d4b96264176ec542e090fc33d90d445d0e3 (diff)
downloadnixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar.gz
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar.bz2
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar.lz
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar.xz
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.tar.zst
nixlib-6dac18a8be264b52577f2ac4fc9c1e04ccb7e39f.zip
imatix_gsl: init at 4.1
Diffstat (limited to 'pkgs/development/tools/imatix_gsl')
-rw-r--r--pkgs/development/tools/imatix_gsl/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/tools/imatix_gsl/default.nix b/pkgs/development/tools/imatix_gsl/default.nix
new file mode 100644
index 000000000000..0def514dec58
--- /dev/null
+++ b/pkgs/development/tools/imatix_gsl/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, pcre } :
+
+stdenv.mkDerivation rec {
+    name = "imatix_gsl";
+    version = "4.1";
+    src = fetchFromGitHub {
+    	owner = "imatix";
+	repo = "gsl";
+	rev = "72192d0d9de17de08d9379602d6482b4e5d402d0";
+	sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7";
+    };
+
+    buildInputs = [ pcre ];
+
+    preBuild = ''
+    	cd src
+    '';
+
+    installFlags = "DESTDIR=$(out)";
+
+    meta = with stdenv.lib; {
+    	 license = licenses.gpl3Plus;
+	 homepage = "https://github.com/imatix/gsl";
+	 description = ''
+	     A universal code generator
+	 '';
+	 platforms = platforms.unix;
+	 maintainer = [ maintainers.moosingin3space ];
+    };
+}
\ No newline at end of file