Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / nflz / default.nix
blob10a87f85b1178a32d06ee7220204a871b909bf5b
1 { fetchCrate
2 , lib
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "nflz";
8   version = "1.0.2";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-c9+79zrIU/M1Rh+DiaLJzbrNSa4IKrYk1gP0dsabUiw=";
13   };
15   cargoHash = "sha256-+SOoZFVJ6mASRKufQE4JmHGKR5rbBgg1PmCrI6dvvko=";
17   # Tests do not work in the package published on crates.io, since the folder
18   # with test resources is not packaged.
19   doCheck = false;
21   meta = {
22     description = "Numbered Files Leading Zeros helps you to manage ascending numbered file names";
23     longDescription = ''
24       CLI to add leading zeros to ascending numbered file names.
25       NFLZ stands for Numbered Files Leading Zeros.
27       This library helps you to manage files inside your file system that
28       belong to a set of ordered files. An example are photos from a camera.
29     '';
30     homepage = "https://github.com/phip1611/nflz";
31     license = with lib.licenses; [ mit ];
32     maintainers = with lib.maintainers; [ phip1611 ];
33   };