nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 20 lines 382 B view raw
1{ stdenv, fetchurl, unzip 2}: 3 4stdenv.mkDerivation { 5 name = "hsqldb-2.4.0"; 6 builder = ./builder.sh; 7 8 src = fetchurl { 9 url = mirror://sourceforge/hsqldb/hsqldb_1_8_0_9.zip; 10 sha256 = "1v5dslwsqb7csjmi5g78pghsay2pszidvlzhyi79y18mra5iv3g9"; 11 }; 12 13 buildInputs = [ unzip 14 ]; 15 16 meta = with stdenv.lib; { 17 platforms = platforms.unix; 18 license = licenses.bsd3; 19 }; 20}