2016-06-10 13:25:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${package-name}-${version}";
|
|
|
|
package-name = "arc-icon-theme";
|
2016-12-07 19:10:45 +00:00
|
|
|
version = "2016-11-22";
|
2016-06-10 13:25:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "horst3180";
|
|
|
|
repo = package-name;
|
2016-12-07 19:10:45 +00:00
|
|
|
rev = "55a575386a412544c3ed2b5617a61f842ee4ec15";
|
|
|
|
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
|
2016-06-10 13:25:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
buildInputs = [ moka-icon-theme ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Arc icon theme";
|
|
|
|
homepage = https://github.com/horst3180/arc-icon-theme;
|
|
|
|
license = with licenses; [ gpl3 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|