2018-02-24 11:27:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, extra-cmake-modules, gtk3, kdeFrameworks }:
|
2016-08-03 10:51:08 +01:00
|
|
|
|
2016-10-09 14:27:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "maia-icon-theme-${version}";
|
|
|
|
version = "2016-09-16";
|
2016-08-03 10:51:08 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "manjaro";
|
|
|
|
repo = "artwork-maia";
|
2016-10-09 14:27:24 +01:00
|
|
|
rev = "f6718cd9c383adb77af54b694c47efa4d581f5b5";
|
|
|
|
sha256 = "0f9l3k9abgg8islzddrxgbxaw6vbai5bvz5qi1v2fzir7ykx7bgj";
|
2016-08-03 10:51:08 +01:00
|
|
|
};
|
|
|
|
|
2018-02-24 11:27:41 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
gtk3
|
|
|
|
kdeFrameworks.plasma-framework
|
|
|
|
kdeFrameworks.kwindowsystem
|
|
|
|
];
|
2016-08-03 10:51:08 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Icons based on Breeze and Super Flat Remix";
|
|
|
|
homepage = https://github.com/manjaro/artwork-maia;
|
2018-02-24 11:27:41 +00:00
|
|
|
license = licenses.free; # https://github.com/manjaro/artwork-maia/issues/27
|
|
|
|
maintainers = with maintainers; [ mounium ];
|
2016-08-03 10:51:08 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|