Skip to content

Commit 8ae6797

Browse files
committedMay 18, 2017
nixopsUnstable: 1.5 -> 2017-05-15
1 parent 0eff1d9 commit 8ae6797

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed
 

‎pkgs/tools/package-management/nixops/generic.nix

+11-14
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55

66
python2Packages.buildPythonApplication {
77
name = "nixops-${version}";
8-
namePrefix = "";
9-
10-
src = src;
8+
inherit version src;
119

1210
buildInputs = [ libxslt ];
1311

@@ -31,23 +29,22 @@ python2Packages.buildPythonApplication {
3129

3230
doCheck = false;
3331

34-
postInstall =
35-
''
36-
make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \
37-
docdir=$out/share/doc/nixops mandir=$out/share/man
32+
postInstall = ''
33+
make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \
34+
docdir=$out/share/doc/nixops mandir=$out/share/man
3835
39-
mkdir -p $out/share/nix/nixops
40-
cp -av "nix/"* $out/share/nix/nixops
36+
mkdir -p $out/share/nix/nixops
37+
cp -av "nix/"* $out/share/nix/nixops
4138
42-
# Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL
43-
# the version of openssh is causing errors when have big networks (40+)
44-
wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin"
45-
'';
39+
# Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL
40+
# the version of openssh is causing errors when have big networks (40+)
41+
wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin"
42+
'';
4643

4744
meta = {
4845
homepage = https://github.com/NixOS/nixops;
4946
description = "NixOS cloud provisioning and deployment tool";
50-
maintainers = [ lib.maintainers.eelco lib.maintainers.rob ];
47+
maintainers = with lib.maintainers; [ eelco rob domenkozar ];
5148
platforms = lib.platforms.unix;
5249
};
5350
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ callPackage, fetchurl }:
22

33
callPackage ./generic.nix (rec {
4-
version = "1.5";
4+
version = "2017-05-15";
55
src = fetchurl {
6-
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
7-
sha256 = "0z4pzc55wjab8v4bkrff94f8qp1g9ydgxxpl2dvy5130bg1s52wd";
6+
url = "https://static.domenkozar.com/rf5n6m8qwviaiv06sfmdwl8hndp0hxbp-nixops-1.5.1pre2159_db36cb7.tar.bz2";
7+
sha256 = "01b4mgql5jxin2fb2ndr1qlc8171vbb1vdljdimy8nz49dgy0gkx";
88
};
99
})

0 commit comments

Comments
 (0)
Please sign in to comment.