mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
parent
fa447287b0
commit
0072cb8ff1
26
pkgs/data/icons/faba-mono-icons/default.nix
Normal file
26
pkgs/data/icons/faba-mono-icons/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -11566,6 +11566,8 @@ in
|
|||
|
||||
faba-icon-theme = callPackage ../data/icons/faba-icon-theme { };
|
||||
|
||||
faba-mono-icons = callPackage ../data/icons/faba-mono-icons { };
|
||||
|
||||
fantasque-sans-mono = callPackage ../data/fonts/fantasque-sans-mono {};
|
||||
|
||||
fira = callPackage ../data/fonts/fira { };
|
||||
|
|
Loading…
Reference in a new issue