nixops: update to 1.5

(cherry picked from commit 780a38c611162c34229c9d06b09dd4ec2f8466f4)
This commit is contained in:
Rob Vermaas 2017-02-16 17:01:56 +00:00
parent 624cd8ae9e
commit 1c366b4e06
No known key found for this signature in database
GPG key ID: E114A5F264A8AE8E
3 changed files with 8 additions and 7 deletions

View file

@ -1,9 +1,9 @@
{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
version = "1.4";
version = "1.5";
src = fetchurl {
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
sha256 = "1a6vkn8rh5lgalxh6cwr4894n3yp7f2qxcbcjv42nnmy5g4fy5fd";
sha256 = "0z4pzc55wjab8v4bkrff94f8qp1g9ydgxxpl2dvy5130bg1s52wd";
};
})

View file

@ -23,8 +23,10 @@ python2Packages.buildPythonApplication {
azure-mgmt-resource
azure-mgmt-storage
adal
pysqlite # Go back to builtin sqlite once Python 2.7.13 is released
# Go back to sqlite once Python 2.7.13 is released
pysqlite
datadog
digital-ocean
];
doCheck = false;

View file

@ -1,10 +1,9 @@
{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
version = "2016-11-23";
version = "1.5";
src = fetchurl {
# Hydra doesn't serve production outputs anymore :(
url = "https://static.domenkozar.com/nixops-1.5pre0_abcdef.tar.bz2";
sha256 = "1a4cyd3zvkdjg9rf9ssr7p4i6r89zr483v5nlr5jzjdjjyi3j2bz";
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
sha256 = "0z4pzc55wjab8v4bkrff94f8qp1g9ydgxxpl2dvy5130bg1s52wd";
};
})