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

64 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-05-13 19:35:17 +00:00
, fetchFromGitHub
, sassc
, autoreconfHook
, pkg-config
2020-05-13 19:35:17 +00:00
, gtk3
, gnome3
, gtk-engine-murrine
, optipng
, inkscape
2020-09-05 19:36:17 +00:00
, cinnamon
2020-05-13 19:35:17 +00:00
}:
stdenv.mkDerivation rec {
2019-02-16 22:58:09 +00:00
pname = "arc-theme";
2020-10-13 12:27:00 +00:00
version = "20201013";
src = fetchFromGitHub {
2020-05-13 19:35:17 +00:00
owner = "jnsh";
repo = pname;
2020-05-13 20:01:10 +00:00
rev = version;
2020-10-13 12:27:00 +00:00
sha256 = "1x2l1mwjx68dwf3jb1i90c1q8nqsl1wf2zggcn8im6590k5yv39s";
};
2018-10-24 14:57:47 +00:00
nativeBuildInputs = [
autoreconfHook
pkg-config
2018-10-24 14:57:47 +00:00
sassc
optipng
inkscape
2018-10-24 14:57:47 +00:00
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 = [
2020-09-05 19:36:17 +00:00
"--with-cinnamon=${cinnamon.cinnamon-common.version}"
2020-05-13 20:04:43 +00:00
"--with-gnome-shell=${gnome3.gnome-shell.version}"
"--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 lib; {
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
2020-05-13 19:35:17 +00:00
homepage = "https://github.com/jnsh/arc-theme";
2020-10-13 12:33:15 +00:00
license = licenses.gpl3Only;
2020-05-13 19:35:17 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ simonvandel romildo ];
};
}