about summary refs log tree commit diff
path: root/pkgs/tools/misc/synth
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-09-11 14:53:45 -0400
committerfigsoda <figsoda@pm.me>2022-09-11 16:43:25 -0400
commit1599304c49da7520714eadb15bcb5e120832ee68 (patch)
treeb3a51e94839ab1bda7f3ed2cd7d07a26996d5ee0 /pkgs/tools/misc/synth
parent2eafac6d06ae28b8fa92c7121352450e9fd80000 (diff)
synth: 0.6.5-r1 -> 0.6.8
Diffstat (limited to 'pkgs/tools/misc/synth')
-rw-r--r--pkgs/tools/misc/synth/default.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/tools/misc/synth/default.nix b/pkgs/tools/misc/synth/default.nix
index 80ccd7fc51cdf..8be135c59d288 100644
--- a/pkgs/tools/misc/synth/default.nix
+++ b/pkgs/tools/misc/synth/default.nix
@@ -1,8 +1,6 @@
 { lib
 , rustPlatform
 , fetchFromGitHub
-, pkg-config
-, openssl
 , stdenv
 , AppKit
 , Security
@@ -10,24 +8,27 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "synth";
-  version = "0.6.5-r1";
+  version = "0.6.8";
 
   src = fetchFromGitHub {
-    owner = "getsynth";
+    owner = "shuttle-hq";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-AcAZjS2Wo0PRngf0eYrduEd6rZX5YpYxsWEp0wf9jvg=";
+    sha256 = "sha256-siAm6Uq8Y+RexNrkL7nTw/f/v0LkUgqTUhAtJiy9QnE=";
   };
 
-  cargoSha256 = "sha256-mMGlUCvbXaO0XfMwVtpq7HENoSaXrQU7GSh7/OhYdus=";
+  cargoSha256 = "sha256-COy8szsYKEzjtRBH8063ug5BkMv3qpc3i2RNb+n4I04=";
 
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
+  buildInputs = lib.optionals stdenv.isDarwin [
     AppKit
     Security
   ];
 
+  checkFlags = [
+    # https://github.com/shuttle-hq/synth/issues/309
+    "--skip=docs_blog_2021_08_31_seeding_databases_tutorial_dot_md"
+  ];
+
   # requires unstable rust features
   RUSTC_BOOTSTRAP = 1;