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: 3a9cb10b2b88
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a141d29fef59
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 30, 2019

  1. hydra-cli: init at 0.2.0

    gilligan committed Aug 30, 2019
    Copy the full SHA
    11ec70c View commit details

Commits on Sep 21, 2019

  1. Merge pull request #67680 from gilligan/add-hydra-cli

    hydra-cli: init at 0.2.0
    Ma27 authored Sep 21, 2019
    Copy the full SHA
    a141d29 View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/development/tools/misc/hydra-cli/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
31 changes: 31 additions & 0 deletions pkgs/development/tools/misc/hydra-cli/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ stdenv, lib, pkgconfig, openssl, fetchFromGitHub, rustPlatform, darwin }:

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

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

cargoSha256 = "0dqj2pdqfbgg8r3h2s07p3m9zgl9xl4vislbqs6a0f1ahrczlda5";

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

nativeBuildInputs = [
pkgconfig
openssl
];

meta = with stdenv.lib; {
description = "A client for the Hydra CI";
homepage = "https://github.com/nlewo/hydra-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ gilligan lewo ];
platforms = platforms.all;
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -11322,6 +11322,8 @@ in

hydra = callPackage ../development/tools/misc/hydra { };

hydra-cli = callPackage ../development/tools/misc/hydra-cli { };

hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { };

hyena = callPackage ../development/libraries/hyena { };