summary refs log blame commit diff
path: root/pkgs/tools/package-management/disnix/DisnixService/default.nix
blob: 36c635eaee849f1ac909dade0861e6b6ba9e3e74 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                         
{stdenv, fetchsvn, jdk, apacheAnt, axis2}:

stdenv.mkDerivation {
    name = "DisnixService-0.1";
    src = fetchsvn {
	url = https://svn.nixos.org/repos/nix/disnix/DisnixService/trunk;
	md5 = "946fe0a6a5aa1add8e71c1f1b04c6a6b";
	rev = 12289;
    };
    
    buildInputs = [ jdk apacheAnt axis2 ];
    builder = ./builder.sh;
    inherit axis2;
    
    meta = {
	license = "LGPL";
    };
}