hsqldb: Forgot these 2
svn path=/nixpkgs/trunk/; revision=9264
This commit is contained in:
parent
028900eb1b
commit
606a46e6b5
6
pkgs/test/hsqldb/builder.sh
Executable file
6
pkgs/test/hsqldb/builder.sh
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
unzip $src
|
||||||
|
cd hsqldb*
|
||||||
|
ensureDir $out
|
||||||
|
cp -R * $out/
|
16
pkgs/test/hsqldb/default.nix
Normal file
16
pkgs/test/hsqldb/default.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ stdenv, fetchurl, unzip
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "hsqldb-1.8.0.7";
|
||||||
|
builder = ./builder.sh;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://kent.dl.sourceforge.net/sourceforge/hsqldb/hsqldb_1_8_0_7.zip;
|
||||||
|
sha256 = "c35fe3c40fba7596e14c096cd0f3f8b70ac46610da7c5878a0ead6b454f5009c";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unzip
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user