vimv-rs: init at 1.7.5

This commit is contained in:
zowoq 2022-07-04 11:39:37 +10:00
parent 3d8f0ff8ff
commit 6a9e4bd161
2 changed files with 28 additions and 0 deletions

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

View file

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