kore: fix up
This commit is contained in:
parent
4219de070d
commit
717e6ac0c5
@ -1,18 +1,27 @@
|
|||||||
{ stdenv, fetchFromGitHub, openssl }:
|
{ stdenv, fetchFromGitHub, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "kore-2.0.0";
|
name = "kore-${version}";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jorisvink";
|
owner = "jorisvink";
|
||||||
repo = "kore";
|
repo = "kore";
|
||||||
rev = "2.0.0-release";
|
rev = "${version}-release";
|
||||||
sha256 = "1jjhx9gfjzpsrs7b9rgb46k6v03azrxz9fq7vkn9zyz6zvnjj614";
|
sha256 = "1jjhx9gfjzpsrs7b9rgb46k6v03azrxz9fq7vkn9zyz6zvnjj614";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Do not require kore to be on PATH when it launches itself as a subprocess.
|
||||||
|
sed -ie "s+\"kore\"+\"$out/bin/kore\"+" src/cli.c
|
||||||
|
'';
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An easy to use web application framework for C";
|
description = "An easy to use web application framework for C";
|
||||||
homepage = https://kore.io;
|
homepage = https://kore.io;
|
||||||
|
Loading…
Reference in New Issue
Block a user