openshift: 1.3.1 -> 1.3.2
This commit is contained in:
parent
e18dac705a
commit
3d94be77dd
@ -1,9 +1,11 @@
|
|||||||
{ stdenv, fetchFromGitHub, go, which }:
|
{ stdenv, fetchFromGitHub, go, which }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.3.1";
|
version = "1.3.2";
|
||||||
versionMajor = "1";
|
ver = stdenv.lib.elemAt (stdenv.lib.splitString "." version);
|
||||||
versionMinor = "3";
|
versionMajor = ver 0;
|
||||||
|
versionMinor = ver 1;
|
||||||
|
versionPatch = ver 2;
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "openshift-origin-${version}";
|
name = "openshift-origin-${version}";
|
||||||
@ -13,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
owner = "openshift";
|
owner = "openshift";
|
||||||
repo = "origin";
|
repo = "origin";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1kxa1k38hvi1vg52p82mmkmp9k4bbbm2pryzapsxwga7d8x4bnbh";
|
sha256 = "0zw8zb9c6icigcq6y47ppnjnqyghk2kril07bapbddvgnvbbfp6m";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ go which ];
|
buildInputs = [ go which ];
|
||||||
@ -43,7 +45,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Build, deploy, and manage your applications with Docker and Kubernetes";
|
description = "Build, deploy, and manage your applications with Docker and Kubernetes";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = http://www.openshift.org;
|
homepage = http://www.openshift.org;
|
||||||
maintainers = with maintainers; [offline];
|
maintainers = with maintainers; [offline bachp];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user