depot/third_party/nixpkgs/pkgs/games/gnubg/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

24 lines
704 B
Nix

{ lib, stdenv, fetchurl, pkgconfig, glib, python, gtk2, readline }:
let version = "1.06.002"; in
stdenv.mkDerivation {
name = "gnubg-"+version;
src = fetchurl {
url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python glib gtk2 readline ];
configureFlags = [ "--with-gtk" "--with--board3d" ];
meta = with lib;
{ description = "World class backgammon application";
homepage = "http://www.gnubg.org/";
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.linux;
};
}