forked from mirrors/nixpkgs
Added disnix
svn path=/nixpkgs/trunk/; revision=12277
This commit is contained in:
parent
6c582fbc89
commit
27b7b3af8e
17
pkgs/tools/package-management/disnix/default.nix
Normal file
17
pkgs/tools/package-management/disnix/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue