2021-01-25 08:26:54 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
mkDerivation,
|
|
|
|
cmake,
|
|
|
|
protobuf,
|
2020-01-22 06:13:19 +00:00
|
|
|
qtbase,
|
|
|
|
qtmultimedia,
|
|
|
|
qttools,
|
|
|
|
qtwebsockets,
|
|
|
|
wrapQtAppsHook,
|
2015-10-23 18:58:42 +00:00
|
|
|
}:
|
|
|
|
|
2020-01-22 06:13:19 +00:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "cockatrice";
|
2023-09-18 11:53:19 +00:00
|
|
|
version = "2023-09-14-Release-2.9.0";
|
2015-10-23 18:58:42 +00:00
|
|
|
|
2020-01-22 06:13:19 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Cockatrice";
|
|
|
|
repo = "Cockatrice";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2023-09-18 11:53:19 +00:00
|
|
|
sha256 = "sha256-mzYh0qRKiHY64LnoOfF4kDEO06IW1SrCqEiOlu81Fso=";
|
2020-01-22 06:13:19 +00:00
|
|
|
};
|
2015-10-23 18:58:42 +00:00
|
|
|
|
2020-01-22 06:13:19 +00:00
|
|
|
buildInputs = [
|
2020-12-31 07:48:55 +00:00
|
|
|
qtbase
|
|
|
|
qtmultimedia
|
|
|
|
protobuf
|
|
|
|
qttools
|
|
|
|
qtwebsockets
|
2020-01-22 06:13:19 +00:00
|
|
|
];
|
2015-10-23 18:58:42 +00:00
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
2020-01-22 06:13:19 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/Cockatrice/Cockatrice";
|
|
|
|
description = "Cross-platform virtual tabletop for multiplayer card games";
|
2021-04-06 00:08:23 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2021-01-15 04:31:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ evanjs ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2020-01-22 06:13:19 +00:00
|
|
|
};
|
2015-10-23 18:58:42 +00:00
|
|
|
}
|