mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
vimv-rs: init at 1.7.5
This commit is contained in:
parent
3d8f0ff8ff
commit
6a9e4bd161
2 changed files with 28 additions and 0 deletions
24
pkgs/tools/misc/vimv-rs/default.nix
Normal file
24
pkgs/tools/misc/vimv-rs/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, rustPlatform, fetchCrate, stdenv, Foundation }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "vimv-rs";
|
||||
version = "1.7.5";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit version;
|
||||
crateName = "vimv";
|
||||
sha256 = "sha256-VOHQLdwJ6c8KB/IjMDZe9/pNHmLuouNggIK8uJPu+NQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-qXT44h4f4Zw1bi/gblczxehA6hqLLjQBpSwVpYd0PE4=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Foundation ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command line utility for batch-renaming files";
|
||||
homepage = "https://www.dmulholl.com/dev/vimv.html";
|
||||
license = licenses.bsd0;
|
||||
mainProgram = "vimv";
|
||||
maintainers = with maintainers; [ zowoq ];
|
||||
};
|
||||
}
|
|
@ -30718,6 +30718,10 @@ with pkgs;
|
|||
|
||||
vimv = callPackage ../tools/misc/vimv { };
|
||||
|
||||
vimv-rs = callPackage ../tools/misc/vimv-rs {
|
||||
inherit (darwin.apple_sdk.frameworks) Foundation;
|
||||
};
|
||||
|
||||
qpdfview = libsForQt5.callPackage ../applications/misc/qpdfview {};
|
||||
|
||||
qtile = callPackage ../applications/window-managers/qtile { };
|
||||
|
|
Loading…
Reference in a new issue