Merge pull request #98873 from suhr/reproc

reproc: init at 14.1.0
This commit is contained in:
Sandro 2021-02-09 09:57:47 +01:00 committed by GitHub
commit 595380ef64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ 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;
};
}

View File

@ -23909,6 +23909,8 @@ in
rep-gtk = callPackage ../development/libraries/rep-gtk { };
reproc = callPackage ../development/libraries/reproc { };
sawfish = callPackage ../applications/window-managers/sawfish { };
sc68 = callPackage ../applications/audio/sc68 { };