Compare commits
No commits in common. "e26ba260421a52e5f0e2436ade58ff5db04e830f" and "7e17bbdb7c51356f14ab39b4659c4c8d1baafee6" have entirely different histories.
e26ba26042
...
7e17bbdb7c
2 changed files with 7 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, fetchFromGitea, rustPlatform }:
|
{ pkgs, lib, fetchgit, rustPlatform }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "aozora";
|
pname = "aozora";
|
||||||
|
@ -7,10 +7,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
buildInputs = with pkgs; [ openssl ];
|
buildInputs = with pkgs; [ openssl ];
|
||||||
nativeBuildInputs = with pkgs; [ pkg-config ];
|
nativeBuildInputs = with pkgs; [ pkg-config ];
|
||||||
|
|
||||||
src = fetchFromGitea {
|
src = fetchgit {
|
||||||
domain = "git.elnu.com";
|
url = "https://git.elnu.com/ElnuDev/aozora";
|
||||||
owner = "ElnuDev";
|
|
||||||
repo = "aozora";
|
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "93MP1Iw1eklC+IEQXAhzLHJ+qsDASm53qw7vUEtEstI=";
|
sha256 = "93MP1Iw1eklC+IEQXAhzLHJ+qsDASm53qw7vUEtEstI=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, stdenv }:
|
{ lib, stdenv, fetchurl }:
|
||||||
|
|
||||||
let
|
let
|
||||||
_fedrel = "2.fc37";
|
_fedrel = "2.fc37";
|
||||||
|
@ -7,24 +7,15 @@ stdenv.mkDerivation rec {
|
||||||
pname = "ttf-twemoji";
|
pname = "ttf-twemoji";
|
||||||
version = "14.0.2";
|
version = "14.0.2";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = builtins.fetchTarball {
|
||||||
url = "https://kojipkgs.fedoraproject.org/packages/twitter-twemoji-fonts/${version}/${_fedrel}/noarch/twitter-twemoji-fonts-${version}-${_fedrel}.noarch.rpm";
|
url = "https://kojipkgs.fedoraproject.org/packages/twitter-twemoji-fonts/${version}/${_fedrel}/noarch/twitter-twemoji-fonts-${version}-${_fedrel}.noarch.rpm";
|
||||||
hash = "sha256-GK7JZzHs/9gSViSTPPv3V/LFfdGzj4F50VO5HSqs0VE=";
|
sha256 = "sha256:11ay3jc4qd3z1mnijnwdns4bi22y204lva7l7vkazybx1nzrwscl";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with pkgs; [
|
|
||||||
rpm
|
|
||||||
cpio
|
|
||||||
];
|
|
||||||
|
|
||||||
unpackPhase = ''
|
|
||||||
rpm2cpio $src | cpio -i --make-directories
|
|
||||||
'';
|
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm755 usr/share/fonts/twemoji/Twemoji.ttf $out/share/fonts/truetype/Twemoji.ttf
|
install -Dm755 share/fonts/twemoji/Twemoji.ttf $out/share/fonts/truetype/Twemoji.ttf
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Add table
Reference in a new issue