forked from mirrors/nixpkgs
cockatrice: init at 2015-09-24
This commit is contained in:
parent
c65cfc8b66
commit
0ebe4b615e
24
pkgs/games/cockatrice/default.nix
Normal file
24
pkgs/games/cockatrice/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, cmake, qtbase, qtmultimedia, protobuf, qttools
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "cockatrice";
|
||||
version = "2015-09-24";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Cockatrice/Cockatrice/archive/${version}-Release.tar.gz";
|
||||
sha256 = "068f93k3bg4cmdm0iyh2vfmk51nnzf3d6g6cvlm5q8dz1zk5nwzf";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
cmake qtbase qtmultimedia protobuf qttools
|
||||
];
|
||||
|
||||
meta = {
|
||||
repositories.git = git://github.com/Cockatrice/Cockatrice.git;
|
||||
description = "A cross-platform virtual tabletop for multiplayer card games";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [ spencerjanssen ];
|
||||
};
|
||||
}
|
|
@ -13653,6 +13653,8 @@ let
|
|||
|
||||
chessdb = callPackage ../games/chessdb { };
|
||||
|
||||
cockatrice = qt5Libs.callPackage ../games/cockatrice { };
|
||||
|
||||
confd = goPackages.confd.bin // { outputs = [ "bin" ]; };
|
||||
|
||||
construoBase = lowPrio (callPackage ../games/construo {
|
||||
|
|
Loading…
Reference in a new issue