mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
39 lines
864 B
Nix
39 lines
864 B
Nix
{ stdenv, fetchurl, pkgconfig, file, intltool, glib, gtk3, libxklavier, wrapGAppsHook, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgnomekbd";
|
|
version = "3.26.1";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0y962ykn3rr9gylj0pwpww7bi20lmhvsw6qvxs5bisbn2mih5jpp";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = pname; };
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
file
|
|
intltool
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
# Requires in libgnomekbd.pc
|
|
propagatedBuildInputs = [
|
|
gtk3
|
|
libxklavier
|
|
glib
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Keyboard management library";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|