nixpkgs-suyu/pkgs/tools/misc/synth/default.nix

41 lines
851 B
Nix
Raw Normal View History

2021-10-10 18:13:47 +02:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
2021-11-06 21:23:08 +01:00
, AppKit
2021-10-10 18:13:47 +02:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "synth";
2021-10-29 17:42:32 +02:00
version = "0.6.1";
2021-10-10 18:13:47 +02:00
src = fetchFromGitHub {
owner = "getsynth";
repo = pname;
rev = "v${version}";
2021-10-29 17:42:32 +02:00
sha256 = "sha256-VsvGrlFmn8Q7dhvo3Buy8G0oeNErtBT4lZ8k8WFC8Zo=";
2021-10-10 18:13:47 +02:00
};
2021-10-29 17:42:32 +02:00
cargoSha256 = "sha256-10b2n7wMuBt90GZ6AVnSMT7r2501tounw13eJhyrmS4=";
2021-10-10 18:13:47 +02:00
nativeBuildInputs = [ pkg-config ];
2021-10-29 17:42:32 +02:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
2021-11-06 21:23:08 +01:00
AppKit
2021-10-29 17:42:32 +02:00
Security
];
2021-10-10 18:13:47 +02:00
# 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 ];
};
}