Unverified Commit 6fea63a3 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #322313 from r-ryantm/auto-update/railway

railway: 3.9.0 -> 3.9.3
parents 062fe8f2 bf0cab15
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
{ lib, rustPlatform, fetchFromGitHub, pkg-config, openssl, stdenv, CoreServices
, Security }:
, Security, SystemConfiguration }:

rustPlatform.buildRustPackage rec {
  pname = "railway";
  version = "3.9.0";
  version = "3.9.3";

  src = fetchFromGitHub {
    owner = "railwayapp";
    repo = "cli";
    rev = "v${version}";
    hash = "sha256-eMbeU9DflGXQRqoXnTlMmCJUsCvAywjmckDqxhT+LD8=";
    hash = "sha256-8K+awKsSQotPqVJg7SkpPCjenU6a/cqEZogqwQAe0I8=";
  };

  cargoHash = "sha256-rYHvvGyD49+n7DHHd0CKCwd6w5WgWONWGxW2vXm7DL4=";
  cargoHash = "sha256-2KNSPn0zrx5zwF9g29x3/L/ptza+NstBu4Lc1PR4ymE=";

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ openssl ]
    ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
    ++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];

  OPENSSL_NO_VENDOR = 1;

+1 −1
Original line number Diff line number Diff line
@@ -12175,7 +12175,7 @@ with pkgs;
  raider = callPackage ../applications/misc/raider { };
  railway = callPackage ../development/tools/railway {
    inherit (darwin.apple_sdk.frameworks) CoreServices Security;
    inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
  };
  quota = if stdenv.isLinux then linuxquota else unixtools.quota;