Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 300846f3c982
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f08bfb863718
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 15, 2020

  1. hydra-cli: 0.2.0 -> 0.3.0

    nlewo committed Nov 15, 2020
    Copy the full SHA
    4e46afa View commit details

Commits on Nov 16, 2020

  1. Merge pull request #103882 from nlewo/hydra-cli-0.3.0

    hydra-cli: 0.2.0 -> 0.3.0
    nlewo authored Nov 16, 2020
    Copy the full SHA
    f08bfb8 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/development/tools/misc/hydra-cli/default.nix
7 changes: 3 additions & 4 deletions pkgs/development/tools/misc/hydra-cli/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,15 @@

rustPlatform.buildRustPackage rec {
pname = "hydra-cli";
version = "0.2.0";
version = "0.3.0";

src = fetchFromGitHub {
owner = "nlewo";
repo = pname;
rev = "v${version}";
sha256 = "1jdlmc45hwblcxs6hvy3gi2dr7qyzs1sg5zr26jrpxrbvqqzrdhc";
sha256 = "1fd3swdjx249971ak1bgndm5kh6rlzbfywmydn122lhfi6ry6a03";
};

cargoSha256 = "1sj80a99iakxxa698gggiszsrxwlwhr2sx4wmsni0cshx6z2x6za";
cargoSha256 = "1fjzcgayyha270bdxl5p6c337nq8zj4h81rk4ih9czyz3yaxga3f";

buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];