summary refs log tree commit diff
path: root/pkgs/data/icons/faba-mono-icons/default.nix
blob: 16fa63c5424cc38d85f09822c1dff88b901fab6e (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 = "faba-mono-icons";
  version = "2016-04-30";

  src = fetchFromGitHub {
    owner = "moka-project";
    repo = package-name;
    rev = "2006c5281eb988c799068734f289a85443800cda";
    sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9";
  };

  nativeBuildInputs = [ autoreconfHook ];

  buildInputs = [ moka-icon-theme ];

  meta = with stdenv.lib; {
    description = "The full set of Faba monochrome panel icons";
    homepage = https://snwh.org/moka;
    license = with licenses; [ gpl3 ];
    platforms = platforms.all;
    maintainers = with maintainers; [ romildo ];
  };
}