1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/desktops/lxqt/libfm-qt/default.nix

44 lines
868 B
Nix
Raw Normal View History

2017-02-25 15:44:29 +00:00
{
stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools,
2017-11-02 01:53:34 +00:00
pcre, libexif, xorg, libfm, menu-cache,
2017-02-25 15:44:29 +00:00
qtx11extras, qttools
}:
2016-10-03 22:49:44 +01:00
stdenv.mkDerivation rec {
pname = "libfm-qt";
2019-02-05 23:14:19 +00:00
version = "0.14.0";
2016-10-03 22:49:44 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:49:44 +01:00
repo = pname;
rev = version;
2019-02-05 23:14:19 +00:00
sha256 = "1siqqn4waglymfi7c7lrmlxkylddw8qz0qfwqxr1hnmx3dsj9c36";
2016-10-03 22:49:44 +01:00
};
nativeBuildInputs = [
cmake
pkgconfig
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2016-10-03 22:49:44 +01:00
];
buildInputs = [
2017-11-02 01:53:34 +00:00
pcre
libexif
xorg.libpthreadstubs
xorg.libxcb
xorg.libXdmcp
2017-02-25 15:44:29 +00:00
qtx11extras
qttools
2016-10-03 22:49:44 +01:00
libfm
menu-cache
];
meta = with stdenv.lib; {
description = "Core library of PCManFM-Qt (Qt binding for libfm)";
homepage = https://github.com/lxqt/libfm-qt;
2016-10-03 22:49:44 +01:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 11:23:38 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:49:44 +01:00
};
}