nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 31 lines 722 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "nerdfix"; 9 version = "0.4.2"; 10 11 src = fetchFromGitHub { 12 owner = "loichyan"; 13 repo = "nerdfix"; 14 rev = "v${version}"; 15 hash = "sha256-Mp8QFzMQXJEFIzkrmiW/wxMy/+WC4VqbPtWzE92z9Gc="; 16 }; 17 18 cargoHash = "sha256-8EchpubKnixlvAyM2iSf4fE5wowJHT6/mDHIvLPnEok="; 19 20 meta = { 21 description = "Helps you to find/fix obsolete nerd font icons in your project"; 22 mainProgram = "nerdfix"; 23 homepage = "https://github.com/loichyan/nerdfix"; 24 changelog = "https://github.com/loichyan/nerdfix/blob/${src.rev}/CHANGELOG.md"; 25 license = with lib.licenses; [ 26 asl20 27 mit 28 ]; 29 maintainers = [ ]; 30 }; 31}