mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
0765f0528d
Did not add GTK icon cache due to the following error: gtk-update-icon-cache: The generated cache was invalid.
30 lines
832 B
Nix
30 lines
832 B
Nix
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, gtk3, kdeFrameworks }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "maia-icon-theme-${version}";
|
|
version = "2016-09-16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manjaro";
|
|
repo = "artwork-maia";
|
|
rev = "f6718cd9c383adb77af54b694c47efa4d581f5b5";
|
|
sha256 = "0f9l3k9abgg8islzddrxgbxaw6vbai5bvz5qi1v2fzir7ykx7bgj";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
gtk3
|
|
kdeFrameworks.plasma-framework
|
|
kdeFrameworks.kwindowsystem
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Icons based on Breeze and Super Flat Remix";
|
|
homepage = https://github.com/manjaro/artwork-maia;
|
|
license = licenses.free; # https://github.com/manjaro/artwork-maia/issues/27
|
|
maintainers = with maintainers; [ mounium ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|