mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
23 lines
487 B
Nix
23 lines
487 B
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
}:
|
|
buildPythonApplication rec {
|
|
version = "0.0.42";
|
|
pname = "dazel";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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
|
|
];
|
|
};
|
|
}
|