maliit-framework: init at 2.0.0
This commit is contained in:
parent
6a9d303489
commit
11f6a19dcf
68
pkgs/applications/misc/maliit-framework/default.nix
Normal file
68
pkgs/applications/misc/maliit-framework/default.nix
Normal file
@ -0,0 +1,68 @@
|
||||
{ mkDerivation
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
|
||||
, at-spi2-atk
|
||||
, at-spi2-core
|
||||
, libepoxy
|
||||
, gtk3
|
||||
, libdatrie
|
||||
, libselinux
|
||||
, libsepol
|
||||
, libthai
|
||||
, pcre
|
||||
, util-linux
|
||||
, wayland
|
||||
, xorg
|
||||
|
||||
, cmake
|
||||
, doxygen
|
||||
, pkg-config
|
||||
, wayland-protocols
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "maliit-framework";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "maliit";
|
||||
repo = "framework";
|
||||
rev = version;
|
||||
sha256 = "138jyvw130kmrldksbk4l38gvvahh3x51zi4vyplad0z5nxmbazb";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
libepoxy
|
||||
gtk3
|
||||
libdatrie
|
||||
libselinux
|
||||
libsepol
|
||||
libthai
|
||||
pcre
|
||||
util-linux
|
||||
wayland
|
||||
xorg.libXdmcp
|
||||
xorg.libXtst
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
doxygen
|
||||
pkg-config
|
||||
wayland-protocols
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
cmakeFlags+="-DQT5_PLUGINS_INSTALL_DIR=$out/$qtPluginPrefix"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Core libraries of Maliit and server";
|
||||
homepage = "http://maliit.github.io/";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ samueldr ];
|
||||
};
|
||||
}
|
@ -3286,6 +3286,8 @@ with pkgs;
|
||||
|
||||
maigret = callPackage ../tools/security/maigret { };
|
||||
|
||||
maliit-framework = libsForQt5.callPackage ../applications/misc/maliit-framework { };
|
||||
|
||||
mapcidr = callPackage ../tools/misc/mapcidr { };
|
||||
|
||||
mapproxy = callPackage ../applications/misc/mapproxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user