nixpkgs/pkgs/misc/themes/arc/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

39 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "arc-theme";
version = "2016-11-25";
src = fetchFromGitHub {
owner = "horst3180";
repo = pname;
rev = "d641d3de1641a9aa0a0f6ac1bacec91d9fdd3326";
sha256 = "06ysd19bpqsng2bp2gqzn0wpjhldxgwvlzngrs6mkm9hr7ky5z00";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtk-engine-murrine ];
preferLocalBuild = true;
configureFlags = [ "--disable-unity" "--with-gnome=${gnome3.version}" ];
postInstall = ''
mkdir -p $out/share/plank/themes
cp -r extra/*-Plank $out/share/plank/themes
mkdir -p $out/share/doc/$pname/Chrome
cp -r extra/Chrome/*.crx $out/share/doc/$pname/Chrome
cp AUTHORS README.md $out/share/doc/$pname/
'';
meta = with stdenv.lib; {
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
homepage = https://github.com/horst3180/arc-theme;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ simonvandel romildo ];
};
}