nixpkgs/pkgs/desktops/gnome-3/devtools/gdl/default.nix

27 lines
753 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, gnome3, intltool }:
stdenv.mkDerivation rec {
name = "gdl-${version}";
2018-03-13 02:03:18 +01:00
version = "3.28.0";
src = fetchurl {
url = "mirror://gnome/sources/gdl/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2018-03-13 02:03:18 +01:00
sha256 = "1dipnzqpxl0yfwzl2lqdf6vb3174gb9f1d5jndkq8505q7n9ik2j";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "gdl"; attrPath = "gnome3.gdl"; };
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libxml2 gtk3 intltool ];
meta = with stdenv.lib; {
description = "Gnome docking library";
homepage = https://developer.gnome.org/gdl/;
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}