ubi_reader: init
This commit is contained in:
parent
c41914e274
commit
b29a330382
2 changed files with 24 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
||||||
hg-evolve
|
hg-evolve
|
||||||
]);
|
]);
|
||||||
netbox = pkgs.python3Packages.callPackage ./netbox {};
|
netbox = pkgs.python3Packages.callPackage ./netbox {};
|
||||||
|
ubi_reader = pkgs.python3Packages.callPackage ./ubi_reader {};
|
||||||
prometheus-bird-exporter-lfty = pkgs.callPackage ./prometheus-bird-exporter-lfty.nix {};
|
prometheus-bird-exporter-lfty = pkgs.callPackage ./prometheus-bird-exporter-lfty.nix {};
|
||||||
eapol-test = pkgs.callPackage ./eapol-test.nix {};
|
eapol-test = pkgs.callPackage ./eapol-test.nix {};
|
||||||
datez = pkgs.callPackage ./datez {
|
datez = pkgs.callPackage ./datez {
|
||||||
|
|
23
nix/pkgs/ubi_reader/default.nix
Normal file
23
nix/pkgs/ubi_reader/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ buildPythonApplication
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lib
|
||||||
|
, python-lzo
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "ubi_reader";
|
||||||
|
version = "0.7.2-master";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jrspruitt";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1crggg4f8jm9bs6x354nacs8c714mxq60aajya0izxk5b7w411dn";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
python-lzo
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
}
|
Loading…
Reference in a new issue