nwg-dock: 0.4.1 -> 0.4.2 (#372381)
[NixPkgs.git] / pkgs / by-name / ou / oui / package.nix
blob584de64b926e12552ec4aa10d3c350c81f0ad635
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "oui";
9   version = "0.1.8";
11   src = fetchFromGitHub {
12     owner = "thatmattlove";
13     repo = "oui";
14     rev = "v${version}";
15     hash = "sha256-RLm8V2fLFvOwjnnq16ZmhwVdtgXPaehan7JTX3Xz30w=";
16   };
18   vendorHash = "sha256-TLVw4tnfvgK2h/Xj5LNNjDG4WQ83Bw8yBhZc16Tjmws=";
20   meta = with lib; {
21     description = "MAC Address CLI Toolkit";
22     homepage = "https://github.com/thatmattlove/oui";
23     license = with licenses; [ bsd3 ];
24     maintainers = teams.wdz.members;
25     mainProgram = "oui";
26   };