about summary refs log tree commit diff
path: root/pkgs/development/libraries/shhmsg
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-07-09 15:21:43 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-07-09 15:21:43 +0200
commit7ec18455b2ce51c2df0172e247856ac2a891f37a (patch)
tree07a408749d67ab376d63a093618ce961d1e5d2a8 /pkgs/development/libraries/shhmsg
parent5c9f437d2fc1409fd5281458fe66c07817078d77 (diff)
downloadnixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar.gz
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar.bz2
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar.lz
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar.xz
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.tar.zst
nixlib-7ec18455b2ce51c2df0172e247856ac2a891f37a.zip
shhmsg: init at 1.4.2
Diffstat (limited to 'pkgs/development/libraries/shhmsg')
-rw-r--r--pkgs/development/libraries/shhmsg/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/shhmsg/default.nix b/pkgs/development/libraries/shhmsg/default.nix
new file mode 100644
index 000000000000..5f14a7bb5ee5
--- /dev/null
+++ b/pkgs/development/libraries/shhmsg/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "shhmsg-1.4.2";
+
+  src = fetchurl {
+    url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
+    sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
+  };
+
+  installFlags = "INSTBASEDIR=$(out)";
+
+  meta = with stdenv.lib; {
+    description = "A library for displaying messages";
+    homepage = http://shh.thathost.com/pub-unix/;
+    license = licenses.artistic1;
+    platforms = platforms.linux;
+  };
+}
+