2ed758481c
This is built from the same source as minijail, but is for all intents and purposes a seperate package. It builds different things, with no overlap, and is under a different license.
14 lines
395 B
Nix
14 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;
|
|
};
|
|
}
|