nixpkgs/pkgs/desktops/gnome-3/misc/libgnome-games-support/default.nix

32 lines
889 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, gtk3, libgee, intltool, gnome3 }:
let
pname = "libgnome-games-support";
version = "1.4.0";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0mhly6yhdc4kvg8ff09a0syabd6igvcmcm577ypfsjkxv92v328x";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ glib gtk3 libgee ];
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
description = "Small library intended for internal use by GNOME Games, but it may be used by others";
homepage = https://wiki.gnome.org/Apps/Games;
license = licenses.lgpl3;
maintainers = gnome3.maintainers;
platforms = platforms.unix;
};
}