Moved a number of Java libraries from the GW project to the Nix

Package Collection.


svn path=/nixpkgs/trunk/; revision=3803
This commit is contained in:
Martin Bravenboer
2005-09-11 15:38:59 +00:00
parent 78c1eb55df
commit 951023ee8a
17 changed files with 229 additions and 42 deletions

View File

@@ -0,0 +1,6 @@
set -e
. $stdenv/setup
tar xvf $src
mkdir -p $out
mv * $out

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl} :
stdenv.mkDerivation {
name = "mockobjects-0.09";
builder = ./builder.sh;
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/mockobjects/mockobjects-bin-0.09.tar;
md5 = "a0e11423bd5fcbb6ea65753643ea8852";
};
}