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

35 lines
706 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-11-05 17:35:02 +00:00
version = "1.0.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-11-05 17:35:02 +00:00
sha256 = "1viaqmcq4axwsq5vrr08j95swapbqnwmv064kaijm1jj9csadsvv";
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 ];
};
}