My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/gdl/default.nix

28 lines
725 B

{ lib, stdenv, fetchurl, pkg-config, libxml2, gtk3, gnome, intltool }:
stdenv.mkDerivation rec {
pname = "gdl";
version = "3.40.0";
src = fetchurl {
url = "mirror://gnome/sources/gdl/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "NkHU/WadHhgYrv88+f+3iH/Fw2eFC3jCjHdeukq2pVU=";
};
nativeBuildInputs = [ pkg-config intltool ];
buildInputs = [ libxml2 gtk3 ];
passthru = {
updateScript = gnome.updateScript {
packageName = "gdl";
};
};
meta = with lib; {
description = "Gnome docking library";
homepage = "https://developer.gnome.org/gdl/";
maintainers = teams.gnome.members;
license = licenses.gpl2;
platforms = platforms.unix;
};
}