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";
2020-12-15 22:40:43 +00:00
version = "0.16.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;
2020-12-15 22:40:43 +00:00
sha256 = "12pbba7a2rk0kjn3hl2lvn90di58w0s5psbq51kz39ah3rlp9dzz";
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 ];
};
}