nixpkgs/pkgs/development/web/kcgi/default.nix

34 lines
905 B
Nix
Raw Normal View History

2018-05-08 11:35:28 +02:00
{ stdenv, pkgconfig, fetchFromGitHub, libbsd }:
stdenv.mkDerivation rec {
pname = "kcgi";
version = "0.10.6";
2018-05-08 11:35:28 +02:00
underscoreVersion = stdenv.lib.replaceChars ["."] ["_"] version;
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "kristapsdz";
repo = pname;
rev = "VERSION_${underscoreVersion}";
sha256 = "0vaqz7krlvkjlc0189pkcj1al1p5ic577dn6bb4ivca1bss1i3m2";
2018-05-08 11:35:28 +02:00
};
patchPhase = ''substituteInPlace configure \
--replace /usr/local /
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ] ++ stdenv.lib.optionals stdenv.isLinux [ libbsd ] ;
dontAddPrefix = true;
installFlags = [ "DESTDIR=$(out)" ];
meta = with stdenv.lib; {
homepage = https://kristaps.bsd.lv/kcgi;
description = "Minimal CGI and FastCGI library for C/C++";
license = licenses.isc;
platforms = platforms.all;
maintainers = [ maintainers.leenaars ];
};
}