3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/themes/arc/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2018-10-24 15:57:47 +01:00
{ stdenv, fetchFromGitHub, sassc, autoreconfHook, pkgconfig, gtk3, gnome3
, gtk-engine-murrine, optipng, inkscape }:
stdenv.mkDerivation rec {
2019-02-16 22:58:09 +00:00
pname = "arc-theme";
2019-09-18 02:40:01 +01:00
version = "20190917";
src = fetchFromGitHub {
owner = "arc-design";
2017-09-06 07:51:08 +01:00
repo = pname;
rev = version;
2019-09-18 02:40:01 +01:00
sha256 = "1qgpk4p2hi5hd4yy0hj93kq1vs0b32wb8qkaj1wi90c8gwddq5wa";
};
2018-10-24 15:57:47 +01:00
nativeBuildInputs = [
autoreconfHook
pkgconfig
sassc
optipng
inkscape
gtk3
];
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;
2018-10-24 15:57:47 +01:00
preBuild = ''
# Shut up inkscape's warnings about creating profile directory
export HOME="$NIX_BUILD_ROOT"
'';
configureFlags = [
"--disable-gnome-shell" # 3.36 not supported
"--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
'';
meta = with stdenv.lib; {
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
homepage = "https://github.com/arc-design/arc-theme";
2017-09-06 07:51:08 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ simonvandel romildo ];
platforms = platforms.linux;
2020-04-21 06:37:15 +01:00
broken = true; # since libsass 3.6.3
};
}