1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/servers/fleet/default.nix

38 lines
724 B
Nix
Raw Normal View History

2014-12-07 13:00:29 +00:00
{ stdenv, lib, go, fetchFromGitHub }:
2014-06-23 10:20:41 +01:00
stdenv.mkDerivation rec {
name = "fleet-${version}";
2016-10-19 14:08:14 +01:00
version = "0.11.8";
2014-06-23 10:20:41 +01:00
2014-12-07 13:00:29 +00:00
src = fetchFromGitHub {
owner = "coreos";
repo = "fleet";
rev = "v${version}";
2016-10-19 14:08:14 +01:00
sha256 = "13kwaa4hkiic602wnvnk13pflrxqhk2vxwpk1bn52ilwxkjyvkig";
2014-06-23 10:20:41 +01:00
};
buildInputs = [ go ];
buildPhase = ''
patchShebangs build
2014-12-07 13:00:29 +00:00
./build
2014-06-23 10:20:41 +01:00
'';
installPhase = ''
2014-12-07 13:00:29 +00:00
mkdir -p $out
mv bin $out
2014-06-23 10:20:41 +01:00
'';
meta = with stdenv.lib; {
description = "A distributed init system";
homepage = https://coreos.com/using-coreos/clustering/;
2014-06-23 10:20:41 +01:00
license = licenses.asl20;
2016-10-19 11:00:15 +01:00
maintainers = with maintainers; [
cstrahan
jgeerds
offline
];
2014-06-23 10:20:41 +01:00
platforms = platforms.unix;
};
}