depot/third_party/nixpkgs/pkgs/desktops/lxqt/lxqt-themes/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
604 B
Nix

{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools }:
mkDerivation rec {
pname = "lxqt-themes";
version = "0.14.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
sha256 = "09dkcgnf3lmfly8v90p6wjlj5rin83pbailvvpx2jr8a48a8zb9f";
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
meta = with lib; {
description = "Themes, graphics and icons for LXQt";
homepage = "https://github.com/lxqt/lxqt-themes";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}