about summary refs log tree commit diff
path: root/pkgs/data/icons/arc-icon-theme/default.nix
blob: 07900eebeefa9b7830e0ca0797d284c7323103fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:

stdenv.mkDerivation rec {
  name = "${package-name}-${version}";
  package-name = "arc-icon-theme";
  version = "2016-06-06";

  src = fetchFromGitHub {
    owner = "horst3180";
    repo = package-name;
    rev = "69da5eed0761237fd287ea2fc95c708353ccc332";
    sha256 = "04ym3ix2cpjh1q7lwvhl578pv41mn9zsadlsygl0nck8yd22widq";
  };

  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 ];
  };
}