zug: init at 0.1.0

This commit is contained in:
nek0 2023-10-15 03:58:01 +02:00
parent 8dd11c5f19
commit 3542ebb79d
2 changed files with 31 additions and 1 deletions

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/arximboldi/lager";
description = "library for functional interactive c++ programs";
license = licenses.lgpl3Plus;
license = licenses.mit;
maintainers = with maintainers; [ nek0 ];
};
}

View file

@ -0,0 +1,30 @@
{ callPackage, stdenv, lib, pkgs,
fetchFromGitHub,
cmake, boost
}:
stdenv.mkDerivation rec {
pname = "zug";
version = "0.1.0";
src = fetchFromGitHub {
owner = "arximboldi";
repo = pname;
rev = "v${version}";
hash = "sha256-7xTMDhPIx1I1PiYNanGUsK8pdrWuemMWM7BW+NQs2BQ=";
};
buildInputs = [
cmake
boost
];
cmakeFlags = [
"-Dzug_BUILD_TESTS=OFF"
"-Dzug_BUILD_EXAMPLES=OFF"
];
meta = with lib; {
homepage = "https://github.com/arximboldi/zug";
description = "library for functional interactive c++ programs";
maintainers = with maintainers; [ nek0 ];
license = licenses.boost;
};
}