aboutsummaryrefslogtreecommitdiffhomepage
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/udev-gothic/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/udev-gothic/default.nix b/pkgs/udev-gothic/default.nix
deleted file mode 100644
index 6612813..0000000
--- a/pkgs/udev-gothic/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- lib,
- stdenv,
- fetchzip,
-}:
-
-stdenv.mkDerivation rec {
- pname = "udev-gothic";
- version = "2.1.0";
-
- src = fetchzip {
- url = "https://github.com/yuru7/udev-gothic/releases/download/v${version}/UDEVGothic_v${version}.zip";
- sha256 = "sha256-9gwBT0GVNPVWoiFIKBUf5sNGkhfJCWhMFRRIGvj5Wto=";
- };
-
- installPhase = ''
- mkdir -p $out/share/fonts
- cp $src/*.ttf $out/share/fonts
- '';
-
- meta = with lib; {
- description = "UDEV Gothic は、ユニバーサルデザインフォントのBIZ UDゴシックと、 開発者向けフォントの JetBrains Mono を合成した、プログラミング向けフォントです。";
- homepage = "https://github.com/yuru7/udev-gothic";
- license = licenses.ofl;
- };
-}