1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00
oddlama_nix-config/pkgs/segoe-ui-ttf.nix
2023-09-05 00:14:21 +02:00

20 lines
449 B
Nix

{
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "segoe-ui";
version = "unstable-2023-09-04";
src = fetchFromGitHub {
owner = "mrbvrz";
repo = "segoe-ui-linux";
rev = "73b3a40c6c433d3b8149d945d4c441d4497d5f79";
hash = "sha256-EwsoX6Rz1uaysCIxL11AHTKb2hfwKi/hNIKgG4MzR5o=";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
install -m644 $src/font/*.ttf $out/share/fonts/truetype/
'';
}