nixpkgs/pkgs/desktops/lxqt/pcmanfm-qt/default.nix

39 lines
843 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt, qtbase, qttools,
2019-02-06 02:14:23 +03:00
qtx11extras, libfm-qt, menu-cache, lxmenu-data }:
2016-10-04 01:06:13 +03:00
mkDerivation rec {
2016-10-04 01:06:13 +03:00
pname = "pcmanfm-qt";
2019-02-27 00:31:58 +03:00
version = "0.14.1";
2016-10-04 01:06:13 +03:00
2017-11-02 05:00:50 +03:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-04 01:06:13 +03:00
repo = pname;
rev = version;
2019-02-27 00:31:58 +03:00
sha256 = "1zchxlbyiifing94mqwh45pp7z3ihldknqiaz0kanq1cnma1jj6k";
2016-10-04 01:06:13 +03:00
};
2017-02-19 15:43:43 +03:00
nativeBuildInputs = [
cmake
pkgconfig
2019-02-06 02:14:23 +03:00
lxqt.lxqt-build-tools
2017-02-19 15:43:43 +03:00
];
2016-10-04 01:06:13 +03:00
buildInputs = [
2019-02-06 02:14:23 +03:00
qtbase
qttools
qtx11extras
2018-05-22 16:54:12 +03:00
libfm-qt
libfm-qt
2016-10-04 01:06:13 +03:00
menu-cache
lxmenu-data
];
meta = with lib; {
2016-10-04 01:06:13 +03:00
description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)";
homepage = "https://github.com/lxqt/pcmanfm-qt";
2016-10-04 01:06:13 +03:00
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 15:43:43 +03:00
maintainers = with maintainers; [ romildo ];
2016-10-04 01:06:13 +03:00
};
}