Merge pull request #233141 from figsoda/jen

This commit is contained in:
figsoda 2023-05-22 11:39:46 -04:00 committed by GitHub
commit ae7f9c70b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, rustPlatform
, fetchCrate
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "jen";
version = "1.6.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-fpv/IzU23yAz1cumTbdQP6wHJX2U4acNxq8Zrx+YQVs=";
};
cargoHash = "sha256-LKiPG7k5UgaESP1ShsIWNMnm9resbRje746txOBo+Qs=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "A simple CLI generation tool for creating large datasets";
homepage = "https://github.com/whitfin/jen";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -8878,6 +8878,8 @@ with pkgs;
jekyll = callPackage ../applications/misc/jekyll { };
jen = callPackage ../tools/text/jen { };
jet = callPackage ../development/tools/jet { };
jf = callPackage ../development/tools/jf { };