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

54 lines
1.3 KiB
Nix
Raw Normal View History

2018-10-24 14:57:47 +00: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";
version = "20200416";
src = fetchFromGitHub {
owner = "jnsh";
2017-09-06 06:51:08 +00:00
repo = pname;
rev = "0779e1ca84141d8b443cf3e60b85307a145169b6";
sha256 = "1ddyi8g4rkd4mxadjvl66wc0lxpa4qdr98nbbhm5abaqfs2yldd4";
};
2018-10-24 14:57:47 +00:00
nativeBuildInputs = [
autoreconfHook
pkgconfig
sassc
optipng
inkscape
gtk3
];
2018-10-24 14:57:47 +00:00
propagatedUserEnvPkgs = [
gnome3.gnome-themes-extra
gtk-engine-murrine
];
2016-05-14 16:05:03 +00:00
2018-10-24 14:57:47 +00:00
enableParallelBuilding = true;
2018-10-24 14:57:47 +00: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-cinnamon" # not equipped to test
"--disable-unity"
];
2016-10-14 09:58:59 +00:00
postInstall = ''
2018-10-24 14:57:47 +00:00
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
2016-10-14 09:58:59 +00:00
'';
meta = with stdenv.lib; {
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
homepage = "https://github.com/jnsh/arc-theme";
2017-09-06 06:51:08 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ simonvandel romildo ];
platforms = platforms.linux;
};
}