mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
2b292f9d1f
Diff: https://github.com/loichyan/nerdfix/compare/v0.2.0...v0.2.1 Changelog: https://github.com/loichyan/nerdfix/blob/v0.2.1/CHANGELOG.md
27 lines
712 B
Nix
27 lines
712 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nerdfix";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loichyan";
|
|
repo = "nerdfix";
|
|
rev = "v${version}";
|
|
hash = "sha256-bohN3RXGZObDSDsggKmqKdLx37o8llTwIcpDQIbxEUo=";
|
|
};
|
|
|
|
cargoHash = "sha256-T5t+PvzCKfwiKQR/WWKxcoulSRhTNdiLDfoLnKO2qJ0=";
|
|
|
|
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 ];
|
|
};
|
|
}
|