* added uptimed 0.3.16

svn path=/nixpkgs/trunk/; revision=17172
This commit is contained in:
Rob Vermaas
2009-09-16 07:31:16 +00:00
parent 63dceffb0b
commit 8afb39344e
3 changed files with 37 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{stdenv, fetchurl, automake, autoconf, libtool}:
stdenv.mkDerivation {
name = "uptimed-0.3.16";
src = fetchurl {
url = http://podgorny.cz/uptimed/releases/uptimed-0.3.16.tar.bz2;
sha256 = "0axi2rz4gnmzzjl7xay7y8j1mh6iqqyg0arl1jyc3fgsk1ggy27m";
};
patches = [ ./no-var-spool-install.patch ];
buildInputs = [automake autoconf libtool];
meta = {
homepage = http://podgorny.cz/uptimed/;
};
}