tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
docker-machine-kvm: 0.7.0 -> 0.8.2
Peter Hoeg
9 years ago
c9b4317b
82fda65c
+15
-19
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
cluster
docker-machine
kvm-deps.nix
kvm.nix
+8
-8
pkgs/applications/networking/cluster/docker-machine/kvm-deps.nix
···
1
1
# This file was generated by go2nix.
2
2
[
3
3
{
4
4
-
goPackagePath = "github.com/alexzorin/libvirt-go";
4
4
+
goPackagePath = "github.com/docker/machine";
5
5
fetch = {
6
6
type = "git";
7
7
-
url = "https://github.com/alexzorin/libvirt-go";
8
8
-
rev = "9359c4feb97212380aa05213fa30c4b7348365f0";
9
9
-
sha256 = "02ipw28pjl5ng2xk63r279apc2py1yr5brcpnsc0cnd2imd51fqa";
7
7
+
url = "https://github.com/docker/machine";
8
8
+
rev = "457c02d06a155827c1c4af9b5ab38c0b6b4e48ea";
9
9
+
sha256 = "0hx5bhjc7q9ml6h6d2a5csqg6vqwjj68599q0cccw3pcfrb34gmd";
10
10
};
11
11
}
12
12
{
13
13
-
goPackagePath = "github.com/docker/machine";
13
13
+
goPackagePath = "github.com/libvirt/libvirt-go";
14
14
fetch = {
15
15
type = "git";
16
16
-
url = "https://github.com/docker/machine";
17
17
-
rev = "bb37dc7806687013c0c3097342ef7db4257655d2";
18
18
-
sha256 = "0wgyxpwis4hyknqalal1cnvb0v3j8f6lscchhk9ch6i69ngiaf03";
16
16
+
url = "https://github.com/libvirt/libvirt-go";
17
17
+
rev = "e9642325d747c353ca7b76b4893d5dbdc81c296f";
18
18
+
sha256 = "1822b2kbwyxb2gigbiashcs7v4fsyw7k3sdlqh43ga0l6058fmhl";
19
19
};
20
20
}
21
21
]
+7
-11
pkgs/applications/networking/cluster/docker-machine/kvm.nix
···
1
1
# This file was generated by go2nix.
2
2
-
{ stdenv, buildGoPackage, fetchFromGitHub, libvirt }:
2
2
+
{ stdenv, buildGoPackage, fetchFromGitHub, libvirt, pkgconfig }:
3
3
4
4
buildGoPackage rec {
5
5
name = "docker-machine-kvm-${version}";
6
6
-
version = "0.7.0";
6
6
+
version = "0.8.2";
7
7
8
8
goPackagePath = "github.com/dhiltgen/docker-machine-kvm";
9
9
goDeps = ./kvm-deps.nix;
10
10
11
11
src = fetchFromGitHub {
12
12
-
rev = "v${version}";
13
13
-
owner = "dhiltgen";
14
14
-
repo = "docker-machine-kvm";
15
15
-
sha256 = "0zkwwkx74vsfd7v38y9sidi759mhdcpm4409l9y4cx0wmkpavlv6";
12
12
+
rev = "v${version}";
13
13
+
owner = "dhiltgen";
14
14
+
repo = "docker-machine-kvm";
15
15
+
sha256 = "1p7s340wlcjvna3xa2x13nsnixfhbn5b7dhf9cqvxds2slizlm3p";
16
16
};
17
17
18
18
-
buildInputs = [ libvirt ];
19
19
-
20
20
-
postInstall = ''
21
21
-
mv $bin/bin/bin $bin/bin/docker-machine-driver-kvm
22
22
-
'';
18
18
+
buildInputs = [ libvirt pkgconfig ];
23
19
24
20
meta = with stdenv.lib; {
25
21
homepage = https://github.com/dhiltgen/docker-machine-kvm;