Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created September 18, 2019 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthew-piziak/c822a25ad734428455237f924bd0455b to your computer and use it in GitHub Desktop.
Save matthew-piziak/c822a25ad734428455237f924bd0455b to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
let
circleci-cli = pkgs.circleci-cli.overrideAttrs (attrs: rec {
version = "0.1.5879";
owner = "CircleCI-Public";
pname = "circleci-cli";
src = pkgs.fetchFromGitHub {
inherit owner;
repo = pname;
rev = "v${version}";
sha256 = "1471g56apaw0c5dpa0jrr7hvzh3kbwfr3yr0m4mz2dlf27d481ac";
};
});
in { environment.systemPackages = [ circleci-cli ]; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment