Use modules folder
This commit is contained in:
parent
e42f845f09
commit
2903676336
46 changed files with 21 additions and 21 deletions
28
modules/twemoji/default.nix
Normal file
28
modules/twemoji/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
let
|
||||
_fedrel = "2.fc37";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ttf-twemoji";
|
||||
version = "14.0.2";
|
||||
|
||||
src = builtins.fetchTarball {
|
||||
url = "https://kojipkgs.fedoraproject.org/packages/twitter-twemoji-fonts/${version}/${_fedrel}/noarch/twitter-twemoji-fonts-${version}-${_fedrel}.noarch.rpm";
|
||||
sha256 = "sha256:11ay3jc4qd3z1mnijnwdns4bi22y204lva7l7vkazybx1nzrwscl";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 share/fonts/twemoji/Twemoji.ttf $out/share/fonts/truetype/Twemoji.ttf
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Twitter Color Emoji for everyone.";
|
||||
homepage = "https://github.com/twitter/twemoji";
|
||||
license = with licenses; [ cc-by-40 mit ];
|
||||
maintainers = with maintainers; [ elnudev ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue