mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
Merge pull request #10566 from spencerjanssen/cockatrice
cockatrice: init at 2015-09-24
This commit is contained in:
commit
70f9d81688
|
@ -263,6 +263,7 @@
|
|||
skeidel = "Sven Keidel <svenkeidel@gmail.com>";
|
||||
smironov = "Sergey Mironov <ierton@gmail.com>";
|
||||
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
||||
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
|
||||
sprock = "Roger Mason <rmason@mun.ca>";
|
||||
spwhitt = "Spencer Whitt <sw@swhitt.me>";
|
||||
stephenmw = "Stephen Weinberg <stephen@q5comm.com>";
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
|
@ -13667,6 +13667,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