mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
nflz: init at 1.0.2
This commit is contained in:
parent
9d344df50a
commit
c4a002263c
34
pkgs/misc/nflz/default.nix
Normal file
34
pkgs/misc/nflz/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ fetchCrate
|
||||
, lib
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nflz";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-c9+79zrIU/M1Rh+DiaLJzbrNSa4IKrYk1gP0dsabUiw=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-+SOoZFVJ6mASRKufQE4JmHGKR5rbBgg1PmCrI6dvvko=";
|
||||
|
||||
# Tests do not work in the package published on crates.io, since the folder
|
||||
# with test resources is not packaged.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Numbered Files Leading Zeros helps you to manage ascending numbered file names";
|
||||
longDescription = ''
|
||||
CLI to add leading zeros to ascending numbered file names.
|
||||
NFLZ stands for Numbered Files Leading Zeros.
|
||||
|
||||
This library helps you to manage files inside your file system that
|
||||
belong to a set of ordered files. An example are photos from a camera.
|
||||
'';
|
||||
homepage = "https://github.com/phip1611/nflz";
|
||||
license = with lib.licenses; [ mit ];
|
||||
maintainers = with lib.maintainers; [ phip1611 ];
|
||||
};
|
||||
}
|
@ -10110,6 +10110,8 @@ with pkgs;
|
||||
|
||||
nfs-ganesha = callPackage ../servers/nfs-ganesha { };
|
||||
|
||||
nflz = callPackage ../misc/nflz { };
|
||||
|
||||
ngrep = callPackage ../tools/networking/ngrep { };
|
||||
|
||||
ngrok = callPackage ../tools/networking/ngrok { };
|
||||
|
Loading…
Reference in New Issue
Block a user