mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
quickmem: init at 0.3.0
This commit is contained in:
parent
df5affb7b7
commit
43fe1cb0dc
2 changed files with 44 additions and 0 deletions
42
pkgs/development/libraries/quickmem/default.nix
Normal file
42
pkgs/development/libraries/quickmem/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitLab
|
||||
, cmake
|
||||
, doxygen
|
||||
, graphviz
|
||||
, arpa2common
|
||||
, arpa2cm
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "quickmem";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "arpa2";
|
||||
repo = "Quick-MEM";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-cqg8QN4/I+zql7lVDDAgFA05Dmg4ylBTvPSPP7WATdc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
doxygen
|
||||
graphviz
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
arpa2cm
|
||||
arpa2common
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Memory pooling for ARPA2 projects";
|
||||
homepage = "https://gitlab.com/arpa2/Quick-MEM/";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ leungbk ];
|
||||
};
|
||||
}
|
|
@ -20809,6 +20809,8 @@ with pkgs;
|
|||
|
||||
quickder = callPackage ../development/libraries/quickder {};
|
||||
|
||||
quickmem = callPackage ../development/libraries/quickmem {};
|
||||
|
||||
quicksynergy = callPackage ../applications/misc/quicksynergy { };
|
||||
|
||||
quill = callPackage ../tools/security/quill {
|
||||
|
|
Loading…
Reference in a new issue