about summary refs log tree commit diff
path: root/pkgs/tools/text/nerdfix
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-03-26 13:30:22 -0400
committerfigsoda <figsoda@pm.me>2023-03-26 13:30:22 -0400
commitc239772ef27312876e585f8610de52883886e2e2 (patch)
treec291beef2de2ba63a49efd817ba24ab3da9c5d3b /pkgs/tools/text/nerdfix
parenta0be54df4cd0992896d34ff12264a1c9faff7dc5 (diff)
downloadnixlib-c239772ef27312876e585f8610de52883886e2e2.tar
nixlib-c239772ef27312876e585f8610de52883886e2e2.tar.gz
nixlib-c239772ef27312876e585f8610de52883886e2e2.tar.bz2
nixlib-c239772ef27312876e585f8610de52883886e2e2.tar.lz
nixlib-c239772ef27312876e585f8610de52883886e2e2.tar.xz
nixlib-c239772ef27312876e585f8610de52883886e2e2.tar.zst
nixlib-c239772ef27312876e585f8610de52883886e2e2.zip
nerdfix: init at 0.1.0
Diffstat (limited to 'pkgs/tools/text/nerdfix')
-rw-r--r--pkgs/tools/text/nerdfix/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/text/nerdfix/default.nix b/pkgs/tools/text/nerdfix/default.nix
new file mode 100644
index 000000000000..2609ca84b763
--- /dev/null
+++ b/pkgs/tools/text/nerdfix/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "nerdfix";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "loichyan";
+    repo = "nerdfix";
+    rev = "v${version}";
+    hash = "sha256-p6SXdMniUoAUcX4xQYBJ0Yfs0N29wITO0d7GpxavQP0=";
+  };
+
+  cargoHash = "sha256-GMpl4Gw9sbS2WEbf435fipYTghmJ8VsayiWxH1PhxA0=";
+
+  meta = with lib; {
+    description = "Nerdfix helps you to find/fix obsolete nerd font icons in your project";
+    homepage = "https://github.com/loichyan/nerdfix";
+    changelog = "https://github.com/loichyan/nerdfix/blob/${src.rev}/CHANGELOG.md";
+    license = with licenses; [ asl20 mit ];
+    maintainers = with maintainers; [ figsoda ];
+  };
+}