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