about summary refs log tree commit diff
path: root/pkgs/development/libraries/shhopt
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-07-09 15:23:25 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-07-09 15:23:25 +0200
commitd1c2fd81f66b058e847412937be189e2b98bb1d1 (patch)
treee5244afc95052dc926795040f9d4557a9d46d5b6 /pkgs/development/libraries/shhopt
parent7ec18455b2ce51c2df0172e247856ac2a891f37a (diff)
shhopt: init at 1.1.7
Diffstat (limited to 'pkgs/development/libraries/shhopt')
-rw-r--r--pkgs/development/libraries/shhopt/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/shhopt/default.nix b/pkgs/development/libraries/shhopt/default.nix
new file mode 100644
index 0000000000000..dbac4c8596191
--- /dev/null
+++ b/pkgs/development/libraries/shhopt/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "shhopt-1.1.7";
+
+  src = fetchurl {
+    url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
+    sha256 = "0yd6bl6qw675sxa81nxw6plhpjf9d2ywlm8a5z66zyjf28sl7sds";
+  };
+
+  installFlags = "INSTBASEDIR=$(out)";
+
+  meta = with stdenv.lib; {
+    description = "A library for parsing command line options";
+    homepage = http://shh.thathost.com/pub-unix/;
+    license = licenses.artistic1;
+    platforms = platforms.linux;
+  };
+}