libmatekbd: init at 1.18.2
This commit is contained in:
parent
6c4424efb2
commit
75d643ee83
@ -10,6 +10,7 @@ rec {
|
|||||||
};
|
};
|
||||||
engrampa = callPackage ./engrampa { };
|
engrampa = callPackage ./engrampa { };
|
||||||
eom = callPackage ./eom { };
|
eom = callPackage ./eom { };
|
||||||
|
libmatekbd = callPackage ./libmatekbd { };
|
||||||
mate-common = callPackage ./mate-common { };
|
mate-common = callPackage ./mate-common { };
|
||||||
mate-desktop = callPackage ./mate-desktop { };
|
mate-desktop = callPackage ./mate-desktop { };
|
||||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||||
@ -20,6 +21,7 @@ rec {
|
|||||||
|
|
||||||
basePackages = [
|
basePackages = [
|
||||||
caja
|
caja
|
||||||
|
libmatekbd
|
||||||
mate-common
|
mate-common
|
||||||
mate-desktop
|
mate-desktop
|
||||||
mate-icon-theme
|
mate-icon-theme
|
||||||
|
25
pkgs/desktops/mate/libmatekbd/default.nix
Normal file
25
pkgs/desktops/mate/libmatekbd/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxklavier }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libmatekbd-${version}";
|
||||||
|
version = "${major-ver}.${minor-ver}";
|
||||||
|
major-ver = "1.18";
|
||||||
|
minor-ver = "2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||||
|
sha256 = "030bl18qbjm7l92bp1bhs7v82bp8j3mv7c1j1a4gd89iz4611pq3";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
|
|
||||||
|
buildInputs = [ gtk3 libxklavier ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Keyboard management library for MATE";
|
||||||
|
homepage = https://github.com/mate-desktop/libmatekbd;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user