1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
nixpkgs/pkgs/desktops/lxqt/lximage-qt/default.nix

40 lines
845 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools,
2019-02-05 23:14:27 +00:00
qtx11extras, qtsvg, xorg, lxqt-build-tools, libfm-qt, libexif }:
2016-10-08 14:37:10 +01:00
mkDerivation rec {
2016-10-08 14:37:10 +01:00
pname = "lximage-qt";
2019-02-26 21:32:03 +00:00
version = "0.14.1";
2016-10-08 14:37:10 +01:00
2017-11-02 02:02:29 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-08 14:37:10 +01:00
repo = pname;
rev = version;
2019-02-26 21:32:03 +00:00
sha256 = "175l2w5w6iag01v05jq90pxx0al24wpw3mgsbcgqhl4z6h860r32";
2016-10-08 14:37:10 +01:00
};
2017-02-19 12:33:42 +00:00
nativeBuildInputs = [
cmake
pkgconfig
2018-05-22 14:54:16 +01:00
lxqt-build-tools
2017-02-19 12:33:42 +00:00
];
2016-10-08 14:37:10 +01:00
buildInputs = [
2019-02-05 23:14:27 +00:00
qtbase
qttools
qtx11extras
qtsvg
2018-05-22 14:54:16 +01:00
libfm-qt
2016-10-08 14:37:10 +01:00
xorg.libpthreadstubs
xorg.libXdmcp
libexif
];
meta = with lib; {
2016-10-08 14:37:10 +01:00
description = "The image viewer and screenshot tool for lxqt";
homepage = "https://github.com/lxqt/lximage-qt";
2016-10-08 14:37:10 +01:00
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 12:33:42 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-08 14:37:10 +01:00
};
}