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

63 lines
1.2 KiB
Nix
Raw Normal View History

2020-05-13 12:35:17 -07:00
{ stdenv
, fetchFromGitHub
, sassc
, autoreconfHook
, pkgconfig
, gtk3
, gnome3
, gtk-engine-murrine
, optipng
, inkscape_0
2020-05-13 12:35:17 -07:00
}:
stdenv.mkDerivation rec {
2019-02-16 14:58:09 -08:00
pname = "arc-theme";
2020-05-13 13:01:10 -07:00
version = "20200513";
src = fetchFromGitHub {
2020-05-13 12:35:17 -07:00
owner = "jnsh";
repo = pname;
2020-05-13 13:01:10 -07:00
rev = version;
sha256 = "1xiaf31v3j040hflhf09kpznc93a5fqs92m5jf79y46w3dgpia0p";
};
2018-10-24 07:57:47 -07:00
nativeBuildInputs = [
autoreconfHook
pkgconfig
sassc
optipng
inkscape_0
2018-10-24 07:57:47 -07:00
gtk3
];
2018-10-24 07:57:47 -07:00
propagatedUserEnvPkgs = [
gnome3.gnome-themes-extra
gtk-engine-murrine
];
2016-05-14 09:05:03 -07:00
2018-10-24 07:57:47 -07:00
enableParallelBuilding = true;
2018-10-24 07:57:47 -07:00
preBuild = ''
# Shut up inkscape's warnings about creating profile directory
export HOME="$NIX_BUILD_ROOT"
'';
configureFlags = [
2020-05-13 13:04:43 -07:00
"--with-gnome-shell=${gnome3.gnome-shell.version}"
"--disable-cinnamon" # not equipped to test
"--disable-unity"
];
2016-10-14 02:58:59 -07:00
postInstall = ''
2018-10-24 07:57:47 -07:00
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
2016-10-14 02:58:59 -07:00
'';
meta = with stdenv.lib; {
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
2020-05-13 12:35:17 -07:00
homepage = "https://github.com/jnsh/arc-theme";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ simonvandel romildo ];
};
}