cockatrice: 2017-08-31 -> 2019-08-31

- formatting
- add wrapQtAppsHook
- use fetchFromGitHub instead of fetchurl
- don't construct name manually
- add homepage to meta
- remove repositories.get from meta
- use mkDerivation instead of stdenv.mkDerivation
- add qtwebsockets dependency
This commit is contained in:
Evan Stoll 2020-01-22 01:13:19 -05:00 committed by Alyssa Ross
parent 769928e213
commit e801159c66

View file

@ -1,25 +1,29 @@
{ stdenv, fetchurl, cmake, qtbase, qtmultimedia, protobuf, qttools
{ stdenv, fetchFromGitHub, mkDerivation, cmake, protobuf
, qtbase, qtmultimedia, qttools, qtwebsockets, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
name = "${pname}-unstable-${version}";
pname = "cockatrice";
version = "2017-01-20";
mkDerivation rec {
pname = "cockatrice";
version = "2019-08-31-Release-2.7.2";
src = fetchurl {
url = "https://github.com/Cockatrice/Cockatrice/archive/${version}-Release.tar.gz";
sha256 = "1gbcn8vffqdagidlamx670jxymhzaw28r4c6aqg3pq0s6by1l65f";
};
src = fetchFromGitHub {
owner = "Cockatrice";
repo = "Cockatrice";
rev = "${version}";
sha256 = "17nfz4z6zfkiwcrq1rpm8bc7zh4gvcmb3fis9gdjjbji20dvcfxp";
};
buildInputs = [
cmake qtbase qtmultimedia protobuf qttools
];
buildInputs = [
cmake qtbase qtmultimedia protobuf qttools qtwebsockets
];
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 ];
platforms = with stdenv.lib.platforms; linux;
};
nativeBuildInputs = [ wrapQtAppsHook ];
meta = {
homepage = "https://github.com/Cockatrice/Cockatrice";
description = "A cross-platform virtual tabletop for multiplayer card games";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ spencerjanssen ];
platforms = with stdenv.lib.platforms; linux;
};
}