2007-09-06 08:38:32 -07:00
|
|
|
{ stdenv, fetchurl, unzip
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-03-08 18:48:56 -08:00
|
|
|
name = "hsqldb-2.4.0";
|
2007-09-06 08:38:32 -07:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2008-03-27 02:46:03 -07:00
|
|
|
url = mirror://sourceforge/hsqldb/hsqldb_1_8_0_9.zip;
|
2018-03-08 18:48:56 -08:00
|
|
|
sha256 = "1v5dslwsqb7csjmi5g78pghsay2pszidvlzhyi79y18mra5iv3g9";
|
2007-09-06 08:38:32 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip
|
|
|
|
];
|
2018-11-01 13:12:48 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.bsd3;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2007-09-06 08:38:32 -07:00
|
|
|
}
|