nixpkgs/pkgs/data/themes/arc/default.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

2018-10-24 16:57:47 +02:00
{ stdenv, fetchFromGitHub, sassc, autoreconfHook, pkgconfig, gtk3, gnome3
, gtk-engine-murrine, optipng, inkscape }:
stdenv.mkDerivation rec {
2019-02-16 23:58:09 +01:00
pname = "arc-theme";
2019-09-18 03:40:01 +02:00
version = "20190917";
src = fetchFromGitHub {
owner = "arc-design";
2017-09-06 08:51:08 +02:00
repo = pname;
rev = version;
2019-09-18 03:40:01 +02:00
sha256 = "1qgpk4p2hi5hd4yy0hj93kq1vs0b32wb8qkaj1wi90c8gwddq5wa";
};
2018-10-24 16:57:47 +02:00
nativeBuildInputs = [
autoreconfHook
pkgconfig
sassc
optipng
inkscape
gtk3
];
2018-10-24 16:57:47 +02:00
propagatedUserEnvPkgs = [
gnome3.gnome-themes-extra
gtk-engine-murrine
];
2016-05-14 18:05:03 +02:00
2018-10-24 16:57:47 +02:00
enableParallelBuilding = true;
2018-10-24 16:57:47 +02:00
preBuild = ''
# Shut up inkscape's warnings about creating profile directory
export HOME="$NIX_BUILD_ROOT"
'';
configureFlags = [
"--with-gnome-shell=${stdenv.lib.versions.majorMinor gnome3.gnome-shell.version}"
"--disable-unity"
];
2016-10-14 11:58:59 +02:00
postInstall = ''
2018-10-24 16:57:47 +02:00
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
2016-10-14 11:58:59 +02: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 08:51:08 +02:00
license = licenses.gpl3;
maintainers = with maintainers; [ simonvandel romildo ];
platforms = platforms.linux;
};
}