2018-10-24 14:57:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, sassc, autoreconfHook, pkgconfig, gtk3, gnome3
|
|
|
|
, gtk-engine-murrine, optipng, inkscape }:
|
2015-10-24 16:55:26 +00:00
|
|
|
|
2017-12-19 22:08:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-16 22:58:09 +00:00
|
|
|
pname = "arc-theme";
|
2019-04-14 07:08:17 +00:00
|
|
|
version = "20190330";
|
2016-06-03 11:22:40 +00:00
|
|
|
|
2015-10-24 16:55:26 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-09-26 13:56:47 +00:00
|
|
|
owner = "NicoHood";
|
2017-09-06 06:51:08 +00:00
|
|
|
repo = pname;
|
2018-09-26 13:56:47 +00:00
|
|
|
rev = version;
|
2019-04-14 07:08:17 +00:00
|
|
|
sha256 = "16n5svgkpa8azxgyy64zwjjc04r57wfzkdq9igqvbvwkbvx8aa89";
|
2015-10-24 16:55:26 +00:00
|
|
|
};
|
|
|
|
|
2018-10-24 14:57:47 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkgconfig
|
|
|
|
sassc
|
|
|
|
optipng
|
|
|
|
inkscape
|
|
|
|
gtk3
|
|
|
|
gnome3.gnome-shell
|
|
|
|
];
|
2018-09-26 13:56:47 +00:00
|
|
|
|
2018-10-24 14:57:47 +00:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gnome3.gnome-themes-extra
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
2016-05-14 16:05:03 +00:00
|
|
|
|
2018-10-24 14:57:47 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-10-24 16:55:26 +00:00
|
|
|
|
2018-09-26 13:56:47 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
2019-03-25 22:23:25 +00:00
|
|
|
# TODO: remove this after update
|
|
|
|
ln -s 3.30 common/gnome-shell/3.32
|
2018-09-26 13:56:47 +00:00
|
|
|
'';
|
2016-06-03 11:22:40 +00:00
|
|
|
|
2018-10-24 14:57:47 +00:00
|
|
|
preBuild = ''
|
|
|
|
# Shut up inkscape's warnings about creating profile directory
|
|
|
|
export HOME="$NIX_BUILD_ROOT"
|
|
|
|
'';
|
|
|
|
|
2018-09-26 13:56:47 +00:00
|
|
|
configureFlags = [ "--disable-unity" ];
|
2016-10-14 09:58:59 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2018-10-24 14:57:47 +00:00
|
|
|
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
|
2016-10-14 09:58:59 +00:00
|
|
|
'';
|
2015-10-24 16:55:26 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
|
2018-09-26 13:56:47 +00:00
|
|
|
homepage = https://github.com/NicoHood/arc-theme;
|
2017-09-06 06:51:08 +00:00
|
|
|
license = licenses.gpl3;
|
2016-06-03 11:22:40 +00:00
|
|
|
maintainers = with maintainers; [ simonvandel romildo ];
|
2018-09-26 13:56:47 +00:00
|
|
|
platforms = platforms.linux;
|
2015-10-24 16:55:26 +00:00
|
|
|
};
|
|
|
|
}
|