2019-06-16 21:59:06 +02:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2019-02-16 13:08:21 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rootlesskit";
|
2020-07-31 10:30:20 +02:00
|
|
|
version = "0.10.0";
|
2019-02-16 13:08:21 +01:00
|
|
|
goPackagePath = "github.com/rootless-containers/rootlesskit";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rootless-containers";
|
|
|
|
repo = "rootlesskit";
|
|
|
|
rev = "v${version}";
|
2020-07-31 10:30:20 +02:00
|
|
|
sha256 = "0jrzqaczd5zxlbvh0hjym8pc1d7y8c66gslq3d3l5vv4z7hz7yfr";
|
2019-02-16 13:08:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/rootless-containers/rootlesskit";
|
2019-02-16 13:08:21 +01:00
|
|
|
description = ''Kind of Linux-native "fake root" utility, made for mainly running Docker and Kubernetes as an unprivileged user'';
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|