2015-12-18 17:51:01 +00:00
|
|
|
{ callPackage, fetchurl }:
|
|
|
|
|
2017-11-21 23:22:31 +00:00
|
|
|
# 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.
|
|
|
|
|
2015-12-18 17:51:01 +00:00
|
|
|
callPackage ./generic.nix (rec {
|
2019-04-17 15:32:15 +01:00
|
|
|
version = "1.7pre2764_932bf43";
|
2015-12-18 17:51:01 +00:00
|
|
|
src = fetchurl {
|
2019-04-17 15:32:15 +01:00
|
|
|
url = "https://hydra.nixos.org/build/92372343/download/2/nixops-${version}.tar.bz2";
|
|
|
|
sha256 = "f35bf81bf2805473ea54248d0ee92d163d00a1992f3f75d17e8cf430db1f9919";
|
2015-12-18 17:51:01 +00:00
|
|
|
};
|
|
|
|
})
|