2020-04-15 21:00:14 +01:00
|
|
|
{ stdenv, fetchurl, unzip, nixosTests }:
|
2020-02-07 15:34:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "grocy";
|
2020-04-16 18:24:51 +01:00
|
|
|
version = "2.7.0";
|
2020-02-07 15:34:48 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip";
|
2020-04-16 18:24:51 +01:00
|
|
|
sha256 = "10da7s8yc3adqzd8446ksgq61zyzxb4qbnwkzj11qh64y5hyj50q";
|
2020-02-07 15:34:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
unpackPhase = ''
|
|
|
|
unzip ${src} -d .
|
|
|
|
'';
|
|
|
|
|
2020-04-16 18:24:51 +01:00
|
|
|
patches = [
|
|
|
|
./0001-Define-configs-with-env-vars.patch
|
|
|
|
./0002-Remove-check-for-config-file-as-it-s-stored-in-etc-g.patch
|
|
|
|
];
|
2020-03-06 22:46:07 +00:00
|
|
|
patchFlags = [ "--binary" "-p1" ];
|
2020-02-07 15:34:48 +00:00
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
2020-04-15 21:00:14 +01:00
|
|
|
passthru.tests = { inherit (nixosTests) grocy; };
|
|
|
|
|
2020-02-07 15:34:48 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/
|
|
|
|
cp -R . $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
description = "ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home";
|
|
|
|
homepage = "https://grocy.info/";
|
|
|
|
};
|
|
|
|
}
|