summary refs log tree commit diff
path: root/pkgs/data/icons/faba-icon-theme/default.nix
blob: 37f46060ae31932b41990df208cf7afb522c0847 (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
27
28
29
30
{ stdenv, fetchFromGitHub, autoreconfHook, elementary-icon-theme }:

stdenv.mkDerivation rec {
  name = "${package-name}-${version}";
  package-name = "faba-icon-theme";
  version = "2016-09-13";

  src = fetchFromGitHub {
    owner = "moka-project";
    repo = package-name;
    rev = "00431894bce5fb1b8caccaee064788996be228a7";
    sha256 = "0hif030pd4w3s851k0s65w0mf2pik10ha25ycpsv91gpbgarqcns";
  };

  nativeBuildInputs = [ autoreconfHook ];

  buildInputs = [ elementary-icon-theme ];

  postPatch = ''
    substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
  '';

  meta = with stdenv.lib; {
    description = "A sexy and modern icon theme with Tango influences";
    homepage = https://snwh.org/moka;
    license = with licenses; [ cc-by-sa-40 gpl3 ];
    platforms = platforms.all;
    maintainers = with maintainers; [ romildo ];
  };
}