nixpkgs/pkgs/games/xboard/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

2012-12-12 05:29:49 +00:00
{stdenv, fetchurl, libX11, xproto, libXt, libXaw, libSM, libICE, libXmu
2016-05-15 20:12:35 +00:00
, libXext, gnuchess, texinfo, libXpm, pkgconfig, librsvg, cairo, pango
, gtk2
2012-12-12 05:29:49 +00:00
}:
let
s = # Generated upstream information
rec {
baseName="xboard";
2016-08-10 17:30:49 +00:00
version="4.9.1";
2012-12-12 05:29:49 +00:00
name="${baseName}-${version}";
2016-08-10 17:30:49 +00:00
hash="1mkh36xnnacnz9r00b5f9ld9309k32jv6mcavklbdnca8bl56bib";
url="https://ftp.gnu.org/gnu/xboard/xboard-4.9.1.tar.gz";
2016-08-10 17:30:49 +00:00
sha256="1mkh36xnnacnz9r00b5f9ld9309k32jv6mcavklbdnca8bl56bib";
2012-12-12 05:29:49 +00:00
};
buildInputs = [
libX11 xproto libXt libXaw libSM libICE libXmu
libXext gnuchess texinfo libXpm pkgconfig librsvg
2016-05-15 20:12:35 +00:00
cairo pango gtk2
];
in
2012-12-12 05:29:49 +00:00
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl {
2012-12-12 05:29:49 +00:00
inherit (s) url sha256;
};
meta = {
2012-12-12 05:29:49 +00:00
inherit (s) version;
description = ''GUI for chess engines'';
homepage = https://www.gnu.org/software/xboard/;
2012-12-12 05:29:49 +00:00
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.unix;
2012-12-12 05:29:49 +00:00
license = stdenv.lib.licenses.gpl3Plus;
};
}