nixpkgs/pkgs/development/libraries/libwnck/3.x.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-21 07:35:54 +00:00
{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool, gobjectIntrospection, gnome3}:
2018-03-21 07:35:54 +00:00
let
pname = "libwnck";
version = "3.24.1";
in stdenv.mkDerivation rec{
name = "${pname}-${version}";
src = fetchurl {
2018-03-21 07:35:54 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2017-11-16 04:29:18 +00:00
sha256 = "010zk9zvydggxqnxfml3scml5yxmpjy90irpqcayrzw26lldr9mg";
};
outputs = [ "out" "dev" "devdoc" ];
outputBin = "dev";
2018-03-21 07:35:54 +00:00
configureFlags = [ "--enable-introspection" ];
2018-03-21 07:35:54 +00:00
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ];
propagatedBuildInputs = [ libX11 gtk3 ];
2018-03-21 07:35:54 +00:00
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "dev"}/share/gir-1.0";
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
description = "Library to manage X windows and workspaces (via pagers, tasklists, etc.)";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = [];
};
}