2019-06-16 12:59:06 -07:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2019-02-16 04:08:21 -08:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "rootlesskit";
|
2020-11-15 08:08:27 -08:00
|
|
|
version = "0.11.1";
|
2019-02-16 04:08:21 -08:00
|
|
|
goPackagePath = "github.com/rootless-containers/rootlesskit";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rootless-containers";
|
|
|
|
repo = "rootlesskit";
|
|
|
|
rev = "v${version}";
|
2020-11-15 08:08:27 -08:00
|
|
|
sha256 = "15k0503077ang9ywvmhpr1l7ax0v3wla0x8n6lqpmd71w0j2zm5r";
|
2019-02-16 04:08:21 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/rootless-containers/rootlesskit";
|
2019-02-16 04:08:21 -08: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;
|
|
|
|
};
|
|
|
|
}
|