nixpkgs/pkgs/data/icons/maia-icon-theme/default.nix

30 lines
832 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, gtk3, kdeFrameworks }:
2016-08-03 09:51:08 +00:00
stdenv.mkDerivation rec {
name = "maia-icon-theme-${version}";
version = "2016-09-16";
2016-08-03 09:51:08 +00:00
src = fetchFromGitHub {
owner = "manjaro";
repo = "artwork-maia";
rev = "f6718cd9c383adb77af54b694c47efa4d581f5b5";
sha256 = "0f9l3k9abgg8islzddrxgbxaw6vbai5bvz5qi1v2fzir7ykx7bgj";
2016-08-03 09:51:08 +00:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
gtk3
kdeFrameworks.plasma-framework
kdeFrameworks.kwindowsystem
];
2016-08-03 09:51:08 +00:00
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 ];
2016-08-03 09:51:08 +00:00
platforms = platforms.all;
};
}