Loading pkgs/tools/misc/synth/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , rustPlatform , fetchFromGitHub , pkg-config , openssl , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "synth"; version = "0.5.6"; src = fetchFromGitHub { owner = "getsynth"; repo = pname; rev = "v${version}"; sha256 = "06kgzaja04553gaxrfz6d1rqi3xwa6ijl0q6425fg0mqq9ifv7xk"; }; cargoSha256 = "sha256-bjda4uE5K+cJkS2TsTv7FN3H6q3cElRr674FTKaIexA="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; # requires unstable rust features RUSTC_BOOTSTRAP = 1; meta = with lib; { description = "A tool for generating realistic data using a declarative data model"; homepage = "https://github.com/getsynth/synth"; license = licenses.asl20; maintainers = with maintainers; [ figsoda ]; }; } pkgs/top-level/all-packages.nix +4 −0 Original line number Diff line number Diff line Loading @@ -3449,6 +3449,10 @@ with pkgs; sydbox = callPackage ../os-specific/linux/sydbox { }; synth = callPackage ../tools/misc/synth { inherit (darwin.apple_sdk.frameworks) Security; }; syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {}; syslogng = callPackage ../tools/system/syslog-ng { }; Loading
pkgs/tools/misc/synth/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , rustPlatform , fetchFromGitHub , pkg-config , openssl , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "synth"; version = "0.5.6"; src = fetchFromGitHub { owner = "getsynth"; repo = pname; rev = "v${version}"; sha256 = "06kgzaja04553gaxrfz6d1rqi3xwa6ijl0q6425fg0mqq9ifv7xk"; }; cargoSha256 = "sha256-bjda4uE5K+cJkS2TsTv7FN3H6q3cElRr674FTKaIexA="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; # requires unstable rust features RUSTC_BOOTSTRAP = 1; meta = with lib; { description = "A tool for generating realistic data using a declarative data model"; homepage = "https://github.com/getsynth/synth"; license = licenses.asl20; maintainers = with maintainers; [ figsoda ]; }; }
pkgs/top-level/all-packages.nix +4 −0 Original line number Diff line number Diff line Loading @@ -3449,6 +3449,10 @@ with pkgs; sydbox = callPackage ../os-specific/linux/sydbox { }; synth = callPackage ../tools/misc/synth { inherit (darwin.apple_sdk.frameworks) Security; }; syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {}; syslogng = callPackage ../tools/system/syslog-ng { };