Merge pull request #223281 from figsoda/nerdfix

This commit is contained in:
figsoda 2023-03-27 11:31:27 -04:00 committed by GitHub
commit 321b080923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -10128,6 +10128,8 @@ with pkgs;
neofetch = callPackage ../tools/misc/neofetch { };
nerdfix = callPackage ../tools/text/nerdfix { };
nerdfonts = callPackage ../data/fonts/nerdfonts { };
netatalk = callPackage ../tools/filesystems/netatalk { };