3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/lxqt-themes/default.nix

35 lines
707 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, lxqtUpdateScript
}:
2017-11-02 02:12:29 +00:00
mkDerivation rec {
2017-11-02 02:12:29 +00:00
pname = "lxqt-themes";
2021-04-16 21:32:41 +01:00
version = "0.17.0";
2017-11-02 02:12:29 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2017-11-02 02:12:29 +00:00
repo = pname;
rev = version;
2021-04-16 21:32:41 +01:00
sha256 = "13zh5yrq0f96cn5m6i7zdvgb9iw656fad5ps0s2zx6x8mj2mv64f";
2017-11-02 02:12:29 +00:00
};
nativeBuildInputs = [
cmake
2019-02-05 23:14:14 +00:00
lxqt-build-tools
2017-11-02 02:12:29 +00:00
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-themes";
description = "Themes, graphics and icons for LXQt";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2017-11-02 02:12:29 +00:00
maintainers = with maintainers; [ romildo ];
};
}