2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-05-13 20:35:17 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, sassc
|
|
|
|
, autoreconfHook
|
2020-10-13 13:27:35 +01:00
|
|
|
, pkg-config
|
2020-05-13 20:35:17 +01:00
|
|
|
, gtk3
|
|
|
|
, gnome3
|
|
|
|
, gtk-engine-murrine
|
|
|
|
, optipng
|
2020-09-10 19:38:25 +01:00
|
|
|
, inkscape
|
2020-09-05 20:36:17 +01:00
|
|
|
, cinnamon
|
2020-05-13 20:35:17 +01:00
|
|
|
}:
|
2015-10-24 17:55:26 +01:00
|
|
|
|
2017-12-19 22:08:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-02-16 22:58:09 +00:00
|
|
|
pname = "arc-theme";
|
2021-01-28 21:41:38 +00:00
|
|
|
version = "20210127";
|
2016-06-03 12:22:40 +01:00
|
|
|
|
2015-10-24 17:55:26 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-05-13 20:35:17 +01:00
|
|
|
owner = "jnsh";
|
|
|
|
repo = pname;
|
2020-05-13 21:01:10 +01:00
|
|
|
rev = version;
|
2021-01-28 21:41:38 +00:00
|
|
|
sha256 = "sha256-P7YZTD5bAWNWepL7qsZZAMf8ujzNbHOj/SLx8Fw3bi4=";
|
2015-10-24 17:55:26 +01:00
|
|
|
};
|
|
|
|
|
2018-10-24 15:57:47 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2020-10-13 13:27:35 +01:00
|
|
|
pkg-config
|
2018-10-24 15:57:47 +01:00
|
|
|
sassc
|
|
|
|
optipng
|
2020-09-10 19:38:25 +01:00
|
|
|
inkscape
|
2018-10-24 15:57:47 +01:00
|
|
|
gtk3
|
|
|
|
];
|
2018-09-26 14:56:47 +01:00
|
|
|
|
2018-10-24 15:57:47 +01:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
gnome3.gnome-themes-extra
|
|
|
|
gtk-engine-murrine
|
|
|
|
];
|
2016-05-14 17:05:03 +01:00
|
|
|
|
2018-10-24 15:57:47 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-10-24 17:55:26 +01:00
|
|
|
|
2018-10-24 15:57:47 +01:00
|
|
|
preBuild = ''
|
|
|
|
# Shut up inkscape's warnings about creating profile directory
|
|
|
|
export HOME="$NIX_BUILD_ROOT"
|
|
|
|
'';
|
|
|
|
|
2019-09-13 14:19:51 +01:00
|
|
|
configureFlags = [
|
2020-09-05 20:36:17 +01:00
|
|
|
"--with-cinnamon=${cinnamon.cinnamon-common.version}"
|
2020-05-13 21:04:43 +01:00
|
|
|
"--with-gnome-shell=${gnome3.gnome-shell.version}"
|
2019-09-13 14:19:51 +01:00
|
|
|
"--disable-unity"
|
|
|
|
];
|
2016-10-14 10:58:59 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2018-10-24 15:57:47 +01:00
|
|
|
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
|
2016-10-14 10:58:59 +01:00
|
|
|
'';
|
2015-10-24 17:55:26 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-13 14:19:51 +01:00
|
|
|
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
|
2020-05-13 20:35:17 +01:00
|
|
|
homepage = "https://github.com/jnsh/arc-theme";
|
2020-10-13 13:33:15 +01:00
|
|
|
license = licenses.gpl3Only;
|
2020-05-13 20:35:17 +01:00
|
|
|
platforms = platforms.linux;
|
2016-06-03 12:22:40 +01:00
|
|
|
maintainers = with maintainers; [ simonvandel romildo ];
|
2015-10-24 17:55:26 +01:00
|
|
|
};
|
|
|
|
}
|