Merge pull request #106042 from breakds/marl

marl: init at 1.0.0
This commit is contained in:
Raghav Sood 2020-12-06 06:28:06 +00:00 committed by GitHub
commit 6dfa0d8c5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, cmake, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "marl";
version = "1.0.0"; # Based on marl's CHANGES.md
src = fetchFromGitHub {
owner = "google";
repo = pname;
sha256 = "0pnbarbyv82h05ckays2m3vgxzdhpcpg59bnzsddlb5v7rqhw51w";
rev = "40209e952f5c1f3bc883d2b7f53b274bd454ca53";
};
nativeBuildInputs = [ cmake ];
# Turn on the flag to install after building the library.
cmakeFlags = ["-DMARL_INSTALL=ON"];
meta = with stdenv.lib; {
homepage = "https://github.com/google/marl";
description = "A hybrid thread / fiber task scheduler written in C++ 11";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ breakds ];
};
}

View File

@ -2374,6 +2374,8 @@ in
mapproxy = callPackage ../applications/misc/mapproxy { };
marl = callPackage ../development/libraries/marl {};
marlin-calc = callPackage ../tools/misc/marlin-calc {};
masscan = callPackage ../tools/security/masscan {