* Refactoring.

svn path=/nixpkgs/trunk/; revision=5149
This commit is contained in:
Eelco Dolstra
2006-04-10 17:49:24 +00:00
parent 9d27c94bda
commit 57c5067b07
5 changed files with 2 additions and 2 deletions
@@ -0,0 +1,12 @@
{stdenv, fetchurl, jdk, swt}:
stdenv.mkDerivation {
name = "azureus-2.3.0.6";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/Azureus2.3.0.6.jar;
md5 = "84f85b144cdc574338c2c84d659ca620";
};
# buildInputs = [unzip];
inherit jdk swt;
}