2018-09-26 15:56:47 +02:00
|
|
|
{ stdenv, fetchFromGitHub, sassc, autoreconfHook, pkgconfig, gtk3
|
2018-09-27 18:29:19 +02:00
|
|
|
, gnome-themes-extra, gtk-engine-murrine, optipng, inkscape}:
|
2015-10-24 18:55:26 +02:00
|
|
|
|
2017-09-06 08:51:08 +02:00
|
|
|
let
|
2016-10-14 11:58:59 +02:00
|
|
|
pname = "arc-theme";
|
2017-12-19 23:08:29 +01:00
|
|
|
in
|
2017-09-06 08:51:08 +02:00
|
|
|
|
2017-12-19 23:08:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-06 08:51:08 +02:00
|
|
|
name = "${pname}-${version}";
|
2018-09-26 15:56:47 +02:00
|
|
|
version = "20180715";
|
2016-06-03 13:22:40 +02:00
|
|
|
|
2015-10-24 18:55:26 +02:00
|
|
|
src = fetchFromGitHub {
|
2018-09-26 15:56:47 +02:00
|
|
|
owner = "NicoHood";
|
2017-09-06 08:51:08 +02:00
|
|
|
repo = pname;
|
2018-09-26 15:56:47 +02:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1kkfnkiih0i3pds5mgd1v9lrdrp4nh4hk42mw7sa4fpbjff4jh6j";
|
2015-10-24 18:55:26 +02:00
|
|
|
};
|
|
|
|
|
2018-09-26 15:56:47 +02:00
|
|
|
preBuild = ''
|
|
|
|
# Shut up inkscape's warnings
|
|
|
|
export HOME="$NIX_BUILD_ROOT"
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig sassc optipng inkscape ];
|
|
|
|
buildInputs = [ gtk3 ];
|
2016-05-14 18:05:03 +02:00
|
|
|
|
2018-09-27 18:29:19 +02:00
|
|
|
propagatedUserEnvPkgs = [ gnome-themes-extra gtk-engine-murrine ];
|
2015-10-24 18:55:26 +02:00
|
|
|
|
2018-09-26 15:56:47 +02:00
|
|
|
postPatch = ''
|
|
|
|
find . -name render-assets.sh |
|
|
|
|
while read filename
|
|
|
|
do
|
|
|
|
substituteInPlace "$filename" \
|
|
|
|
--replace "/usr/bin/inkscape" "${inkscape.out}/bin/inkscape" \
|
|
|
|
--replace "/usr/bin/optipng" "${optipng.out}/bin/optipng"
|
|
|
|
done
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2016-06-03 13:22:40 +02:00
|
|
|
|
2018-09-26 15:56:47 +02:00
|
|
|
configureFlags = [ "--disable-unity" ];
|
2016-10-14 11:58:59 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
2017-09-13 04:41:48 +02:00
|
|
|
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
|
2016-10-14 11:58:59 +02:00
|
|
|
'';
|
2015-10-24 18:55:26 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
|
2018-09-26 15:56:47 +02:00
|
|
|
homepage = https://github.com/NicoHood/arc-theme;
|
2017-09-06 08:51:08 +02:00
|
|
|
license = licenses.gpl3;
|
2016-06-03 13:22:40 +02:00
|
|
|
maintainers = with maintainers; [ simonvandel romildo ];
|
2018-09-26 15:56:47 +02:00
|
|
|
platforms = platforms.linux;
|
2015-10-24 18:55:26 +02:00
|
|
|
};
|
|
|
|
}
|