oui: init at 0.1.8 (#231046)

authored by Jenny and committed by GitHub 7611d852 249c54b8

+24
+22
pkgs/tools/networking/oui/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "oui"; 5 + version = "0.1.8"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "thatmattlove"; 9 + repo = "oui"; 10 + rev = "v${version}"; 11 + hash = "sha256-RLm8V2fLFvOwjnnq16ZmhwVdtgXPaehan7JTX3Xz30w="; 12 + }; 13 + 14 + vendorHash = "sha256-TLVw4tnfvgK2h/Xj5LNNjDG4WQ83Bw8yBhZc16Tjmws="; 15 + 16 + meta = with lib; { 17 + description = "MAC Address CLI Toolkit"; 18 + homepage = "https://github.com/thatmattlove/oui"; 19 + license = with licenses; [ bsd3 ]; 20 + maintainers = [ maintainers.netali ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 10822 10822 10823 10823 oscclip = callPackage ../tools/misc/oscclip { }; 10824 10824 10825 + oui = callPackage ../tools/networking/oui { }; 10826 + 10825 10827 owncast = callPackage ../servers/owncast { }; 10826 10828 10827 10829 update-dotdee = with python3Packages; toPythonApplication update-dotdee;