3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/virtualization/rootlesskit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
862 B
Nix
Raw Normal View History

2022-03-15 19:52:27 +00:00
{ lib, buildGoModule, fetchFromGitHub, nix-update-script, nixosTests }:
2022-03-15 19:52:27 +00:00
buildGoModule rec {
pname = "rootlesskit";
2022-03-15 19:52:27 +00:00
version = "1.0.0";
src = fetchFromGitHub {
owner = "rootless-containers";
repo = "rootlesskit";
rev = "v${version}";
2022-03-15 19:52:27 +00:00
hash = "sha256-Tml6zTc9l3O8qB+NSKlClWl5lj1rkiDHwI5exxBL83A=";
};
vendorSha256 = "sha256-CpDPa1LAinvXCnVYbn9ZXuEjyHHlDU4bzZ2R+ctoCzQ=";
passthru = {
updateScript = nix-update-script { attrPath = pname; };
tests = nixosTests.docker-rootless;
};
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;
};
}