update controller settings and vm thingies on edi
This commit is contained in:
parent
0cc635afa0
commit
a77e7bcda3
6 changed files with 58 additions and 0 deletions
29
pkgs/ttf-ms-win10/default.nix
Normal file
29
pkgs/ttf-ms-win10/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchzip,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "ttf-ms-win10";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/streetsamurai00mi/ttf-ms-win10/archive/refs/heads/build.zip";
|
||||
hash = "sha256-UwkHlrSRaXhfoMlimyXFETV9yq1SbvUXykrhigf+wP8=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/streetsamurai00mi/ttf-ms-win10";
|
||||
description = "Windows 10 ttf Fonts";
|
||||
license = licenses.unfree;
|
||||
maintainers = [];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue