Added Disnix activation scripts package
svn path=/nixpkgs/trunk/; revision=16928
This commit is contained in:
parent
d573d5f621
commit
c9254649c0
|
@ -0,0 +1,11 @@
|
|||
{stdenv, fetchsvn, autoconf, automake}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "disnix-activation-scripts-nixos";
|
||||
src = fetchsvn {
|
||||
url = https://svn.nixos.org/repos/nix/disnix/disnix-activation-scripts-nixos/trunk;
|
||||
sha256 = "3ba44fbd2c00da6dd1926513184db89c1f3557c55af5c3a4041e85fb6d1a5758";
|
||||
};
|
||||
buildInputs = [ autoconf automake ];
|
||||
preConfigure = "./bootstrap";
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
/nix/store/a9vc52wxfsyy1f84vr66h9hayfgwna37-disnix-activation-scripts-nixos
|
|
@ -1,7 +1,7 @@
|
|||
{stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig, dbus_glib, openssl, libxml2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "disnix-test";
|
||||
name = "disnix";
|
||||
src = fetchsvn {
|
||||
url = https://svn.nixos.org/repos/nix/disnix/disnix/trunk;
|
||||
sha256 = "4397dc0bf4b4ecca795784d0011eb631538b17bd81e77b84bf15d89bf85e94bb";
|
||||
|
|
|
@ -8009,6 +8009,10 @@ let
|
|||
disnix = import ../tools/package-management/disnix {
|
||||
inherit stdenv fetchsvn openssl autoconf automake libtool pkgconfig dbus_glib libxml2;
|
||||
};
|
||||
|
||||
disnix_activation_scripts = import ../tools/package-management/disnix/activation-scripts {
|
||||
inherit stdenv fetchsvn autoconf automake;
|
||||
};
|
||||
|
||||
DisnixService = import ../tools/package-management/disnix/DisnixService {
|
||||
inherit stdenv fetchsvn apacheAnt jdk axis2 shebangfix;
|
||||
|
|
Loading…
Reference in New Issue