nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 26 lines 584 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchCrate, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "vimv-rs"; 9 version = "3.1.0"; 10 11 src = fetchCrate { 12 inherit version; 13 crateName = "vimv"; 14 hash = "sha256-jbRsgEsRYF5hlvo0jEB4jhy5jzCAXNzOsNWWyh4XULQ="; 15 }; 16 17 cargoHash = "sha256-A+Ba3OWQDAramwin1Yc1YDOyabuEEaZGhE1gel2tFoM="; 18 19 meta = with lib; { 20 description = "Command line utility for batch-renaming files"; 21 homepage = "https://www.dmulholl.com/dev/vimv.html"; 22 license = licenses.bsd0; 23 mainProgram = "vimv"; 24 maintainers = with maintainers; [ zowoq ]; 25 }; 26}