98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
22 lines
489 B
Nix
22 lines
489 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
}:
|
|
buildPythonApplication rec {
|
|
version = "0.0.42";
|
|
pname = "dazel";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-JE7+GS7DpuFoC2LK3dvYvjtOdzRxFMHzgZRfvrGBDtQ=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/nadirizr/dazel";
|
|
description = "Run Google's bazel inside a docker container via a seamless proxy.";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
malt3
|
|
];
|
|
};
|
|
}
|