3
0
Fork 0
forked from mirrors/nixpkgs

Added disnix

svn path=/nixpkgs/trunk/; revision=12277
This commit is contained in:
Sander van der Burg 2008-07-06 15:45:26 +00:00
parent 6c582fbc89
commit 27b7b3af8e

View file

@ -0,0 +1,17 @@
{stdenv, fetchsvn, openssl, dbus, autoconf, automake, pkgconfig, dbus_glib}:
stdenv.mkDerivation {
name = "disnix-0.1";
src = fetchsvn {
url = https://svn.nixos.org/repos/nix/disnix/disnix/trunk;
md5 = "419b1fc443e08687874c79d7a09060a7";
rev = 12275;
};
preConfigure = "./bootstrap";
buildInputs = [ openssl dbus autoconf automake pkgconfig dbus_glib ];
meta = {
license = "LGPL";
};
}