mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
689 B
Nix
32 lines
689 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "reproc";
|
|
version = "14.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DaanDeMeyer";
|
|
repo = "reproc";
|
|
rev = "v${version}";
|
|
sha256 = "1n71wb50qv2dmhjgw7azx5gigbrp19l2n3d41g9p05l5l0y1qg0q";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DREPROC++=ON"
|
|
"-DREPROC_TEST=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/DaanDeMeyer/reproc";
|
|
description = "A cross-platform (C99/C++11) process library";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|