Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
837 B
Nix
46 lines
837 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
mkDerivation,
|
|
cmake,
|
|
protobuf,
|
|
qtbase,
|
|
qtmultimedia,
|
|
qttools,
|
|
qtwebsockets,
|
|
wrapQtAppsHook,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "cockatrice";
|
|
version = "2025-04-03-Release-2.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Cockatrice";
|
|
repo = "Cockatrice";
|
|
rev = version;
|
|
sha256 = "sha256-zXAK830SdGT3xN3ST8h9LLy/oWr4MH6TZf57gLfI0e8=";
|
|
};
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtmultimedia
|
|
protobuf
|
|
qttools
|
|
qtwebsockets
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/Cockatrice/Cockatrice";
|
|
description = "Cross-platform virtual tabletop for multiplayer card games";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ evanjs ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|