nixpkgs/pkgs/tools/package-management/disnix/default.nix
Sander van der Burg cbc9ca34b5 Upgraded disnix
svn path=/nixpkgs/trunk/; revision=12333
2008-07-10 14:09:19 +00:00

17 lines
428 B
Nix

{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 = "f961fc6337151b89839eabedd0bc7d13";
rev = 12332;
};
preConfigure = "./bootstrap";
buildInputs = [ openssl dbus autoconf automake pkgconfig dbus_glib ];
meta = {
license = "LGPL";
};
}