uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
47
pkgs/servers/h2/default.nix
Normal file
47
pkgs/servers/h2/default.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{ lib, stdenv, fetchzip, jre, makeWrapper }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "h2";
|
||||
version = "2.1.210";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/h2database/h2database/releases/download/version-${version}/h2-2022-01-17.zip";
|
||||
sha256 = "0zcjblhjj98dsj954ia3by9vx5w7mix1dzi85jnvp18kxmbldmf4";
|
||||
};
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase =
|
||||
let
|
||||
h2ToolScript = ''
|
||||
#!/usr/bin/env bash
|
||||
dir=$(dirname "$0")
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
${jre}/bin/java -cp "$dir/h2-${version}.jar:$H2DRIVERS:$CLASSPATH" $1 "''${@:2}"
|
||||
else
|
||||
echo "You have to provide the full java class path for the h2 tool you want to run. E.g. 'org.h2.tools.Server'"
|
||||
fi
|
||||
'';
|
||||
in ''
|
||||
mkdir -p $out $doc/share/doc/
|
||||
cp -R bin $out/
|
||||
cp -R docs $doc/share/doc/h2
|
||||
|
||||
echo '${h2ToolScript}' > $out/bin/h2tool.sh
|
||||
|
||||
substituteInPlace $out/bin/h2.sh --replace "java" "${jre}/bin/java"
|
||||
|
||||
chmod +x $out/bin/*.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "The Java SQL database";
|
||||
homepage = "http://www.h2database.com/html/main.html";
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
license = licenses.mpl20;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with maintainers; [ mahe ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue