about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/nerd-font-patcher
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/nerd-font-patcher')
-rw-r--r--nixpkgs/pkgs/applications/misc/nerd-font-patcher/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/misc/nerd-font-patcher/default.nix b/nixpkgs/pkgs/applications/misc/nerd-font-patcher/default.nix
new file mode 100644
index 000000000000..76bd2a44824e
--- /dev/null
+++ b/nixpkgs/pkgs/applications/misc/nerd-font-patcher/default.nix
@@ -0,0 +1,40 @@
+{ python3Packages, lib, fetchzip }:
+
+python3Packages.buildPythonApplication rec {
+  pname = "nerd-font-patcher";
+  version = "3.1.1";
+
+  src = fetchzip {
+    url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v${version}/FontPatcher.zip";
+    sha256 = "sha256-H2dPUs6HVKJcjxy5xtz9nL3SSPXKQF3w30/0l7A0PeY=";
+    stripRoot = false;
+  };
+
+  propagatedBuildInputs = with python3Packages; [ fontforge ];
+
+  format = "other";
+
+  postPatch = ''
+    sed -i font-patcher \
+      -e 's,__dir__ + "/src,"'$out'/share/,'
+    sed -i font-patcher \
+      -e  's,/bin/scripts/name_parser,/../lib/name_parser,'
+  '';
+  # Note: we cannot use $out for second substitution
+
+  dontBuild = true;
+
+  installPhase = ''
+    mkdir -p $out/bin $out/share $out/lib
+    install -Dm755 font-patcher $out/bin/nerd-font-patcher
+    cp -ra src/glyphs $out/share/
+    cp -ra bin/scripts/name_parser $out/lib/
+  '';
+
+  meta = with lib; {
+    description = "Font patcher to generate Nerd font";
+    homepage = "https://nerdfonts.com/";
+    license = licenses.mit;
+    maintainers = with maintainers; [ ck3d ];
+  };
+}