chuffed: init at 0.13.2

This commit is contained in:
jaanonim
2025-11-21 13:28:40 +01:00
parent 8f05b9313a
commit 2a4cf2bdd1
+28
View File
@@ -0,0 +1,28 @@
{
stdenv,
cmake,
fetchFromGitHub,
lib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "chuffed";
version = "0.13.2";
src = fetchFromGitHub {
owner = "chuffed";
repo = "chuffed";
tag = finalAttrs.version;
hash = "sha256-D4HEcCDcJi05AL9suc7Twtf/wjpwBkLEeumGY3nNi5g=";
};
nativeBuildInputs = [ cmake ];
meta = {
homepage = "https://github.com/chuffed/chuffed";
description = "The Chuffed CP solver";
longDescription = "Chuffed is a state of the art lazy clause solver designed from the ground up with lazy clause generation in mind.";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jaanonim ];
platforms = lib.platforms.all;
};
})