Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage rec {
4 pname = "rootlesskit";
5 version = "0.3.0-alpha.2";
6 goPackagePath = "github.com/rootless-containers/rootlesskit";
7
8 src = fetchFromGitHub {
9 owner = "rootless-containers";
10 repo = "rootlesskit";
11 rev = "v${version}";
12 sha256 = "11y4hcrpayyyi9j3b80ilccxs5bbwnqfpi5nsjgmjb9v01z35fw6";
13 };
14
15 meta = with lib; {
16 homepage = "https://github.com/rootless-containers/rootlesskit";
17 description = ''Kind of Linux-native "fake root" utility, made for mainly running Docker and Kubernetes as an unprivileged user'';
18 license = licenses.asl20;
19 maintainers = with maintainers; [ offline ];
20 platforms = platforms.linux;
21 };
22}