Merge pull request #55898 from xtruder/pkgs/rootlesskit/init
feat(roolesskit): init at 0.3.0-alpha.2
This commit is contained in:
commit
0a06afa7ed
22
pkgs/tools/virtualization/rootlesskit/default.nix
Normal file
22
pkgs/tools/virtualization/rootlesskit/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "rootlesskit-${version}";
|
||||
version = "0.3.0-alpha.2";
|
||||
goPackagePath = "github.com/rootless-containers/rootlesskit";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rootless-containers";
|
||||
repo = "rootlesskit";
|
||||
rev = "v${version}";
|
||||
sha256 = "11y4hcrpayyyi9j3b80ilccxs5bbwnqfpi5nsjgmjb9v01z35fw6";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/rootless-containers/rootlesskit;
|
||||
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;
|
||||
};
|
||||
}
|
@ -19316,6 +19316,8 @@ in
|
||||
|
||||
rofi-systemd = callPackage ../tools/system/rofi-systemd { };
|
||||
|
||||
rootlesskit = callPackage ../tools/virtualization/rootlesskit {};
|
||||
|
||||
rpcs3 = libsForQt5.callPackage ../misc/emulators/rpcs3 { };
|
||||
|
||||
rstudio = libsForQt5.callPackage ../applications/editors/rstudio {
|
||||
|
Loading…
Reference in New Issue
Block a user