1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "shhmsg-1.4.2";
5
6 src = fetchurl {
7 url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
8 sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
9 };
10
11 installFlags = "INSTBASEDIR=$(out)";
12
13 meta = with stdenv.lib; {
14 description = "A library for displaying messages";
15 homepage = http://shh.thathost.com/pub-unix/;
16 license = licenses.artistic1;
17 platforms = platforms.linux;
18 };
19}
20