8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
13 lines
395 B
Nix
13 lines
395 B
Nix
{ buildPythonApplication, lib, minijail }:
|
|
|
|
buildPythonApplication {
|
|
pname = "minijail-tools";
|
|
inherit (minijail) version src;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://android.googlesource.com/platform/external/minijail/+/refs/heads/master/tools/";
|
|
description = "A set of tools for minijail";
|
|
license = licenses.asl20;
|
|
inherit (minijail.meta) maintainers platforms;
|
|
};
|
|
}
|