nixpkgs/pkgs/tools/package-management/nixops/unstable.nix
Justin Humm c02cfc6f64 nixopsUnstable: 1.6.1pre2706_d5ad09c -> 1.6.1pre2728_8ed39f9
This fixes evaluation with the latest master. See also [0] and [1] for
this.

[0] https://github.com/NixOS/nixops/issues/1086
[1] https://github.com/NixOS/nixops/pull/1088
2019-02-06 17:10:36 +00:00

14 lines
460 B
Nix

{ callPackage, fetchurl }:
# To upgrade pick the hydra job of the nixops revision that you want to upgrade
# to from: https://hydra.nixos.org/job/nixops/master/tarball
# Then copy the URL to the tarball.
callPackage ./generic.nix (rec {
version = "1.6.1pre2728_8ed39f9";
src = fetchurl {
url = "https://hydra.nixos.org/build/88329589/download/2/nixops-${version}.tar.bz2";
sha256 = "1ppnhqmsbiijm6r77h86abv3fjny5iq35yvj207s520kjwzaj7kc";
};
})