nixpkgs/pkgs/games/gnubg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1,020 B
Nix
Raw Normal View History

2023-07-31 04:22:08 +00:00
{ lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline,
copyDesktopItems, makeDesktopItem }:
2015-01-03 00:10:16 +00:00
2022-01-11 12:50:16 +00:00
stdenv.mkDerivation rec {
pname = "gnubg";
2023-07-31 03:46:38 +00:00
version = "1.07.001";
2015-01-03 00:10:16 +00:00
src = fetchurl {
2023-07-31 03:46:38 +00:00
url = "mirror://gnu/gnubg/gnubg-release-${version}-sources.tar.gz";
hash = "sha256-cjmXKUGcrZ8RLDBmoS0AANpFCkVq3XsJTYkVUGnWgh4=";
2015-01-03 00:10:16 +00:00
};
2023-07-31 04:22:08 +00:00
nativeBuildInputs = [ copyDesktopItems pkg-config python3 glib ];
2022-07-08 17:21:55 +00:00
buildInputs = [ gtk2 readline ];
2021-03-25 14:40:50 +00:00
strictDeps = true;
2015-01-03 00:10:16 +00:00
configureFlags = [ "--with-gtk" "--with--board3d" ];
2023-07-31 04:22:08 +00:00
desktopItems = makeDesktopItem {
desktopName = "GNU Backgammon";
name = pname;
genericName = "Backgammon";
comment = meta.description;
exec = pname;
icon = pname;
categories = [ "Game" "GTK" "StrategyGame" ];
};
2021-01-15 04:31:39 +00:00
meta = with lib;
2015-04-28 08:54:58 +00:00
{ description = "World class backgammon application";
2023-07-31 03:46:38 +00:00
homepage = "https://www.gnu.org/software/gnubg/";
2015-01-03 00:10:16 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
2015-01-03 00:10:16 +00:00
platforms = platforms.linux;
};
}