blob: a29b2e90580321c3f36fdf02ec116d840a77ea5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ 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.hostPlatform.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "Simple CLI generation tool for creating large datasets";
mainProgram = "jen";
homepage = "https://github.com/whitfin/jen";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}
|