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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
687 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";
2022-04-16 20:16:31 +01:00
version = "1.1.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;
2022-04-16 20:16:31 +01:00
sha256 = "OEl6ZfMKdqjONRA1LPZ69KyFjp1c21Uib/riYDWSRWE=";
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;
2022-04-14 14:52:15 +01:00
maintainers = teams.lxqt.members;
2017-11-02 02:12:29 +00:00
};
}