3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/icons/arc-icon-theme/default.nix

28 lines
824 B
Nix
Raw Normal View History

2018-02-24 11:10:07 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
2016-06-10 14:25:57 +01:00
stdenv.mkDerivation rec {
name = "${package-name}-${version}";
package-name = "arc-icon-theme";
version = "2016-11-22";
2016-06-10 14:25:57 +01:00
src = fetchFromGitHub {
owner = "horst3180";
repo = package-name;
rev = "55a575386a412544c3ed2b5617a61f842ee4ec15";
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
2016-06-10 14:25:57 +01:00
};
2018-02-24 11:10:07 +00:00
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
2016-06-10 14:25:57 +01:00
2018-02-24 11:10:07 +00:00
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
2016-06-10 14:25:57 +01:00
meta = with stdenv.lib; {
description = "Arc icon theme";
homepage = https://github.com/horst3180/arc-icon-theme;
2018-02-24 11:10:07 +00:00
license = licenses.gpl3;
# moka-icon-theme dependency is restricted to linux
platforms = platforms.linux;
2016-06-10 14:25:57 +01:00
maintainers = with maintainers; [ romildo ];
};
}