depot/third_party/nixpkgs/pkgs/os-specific/linux/macchanger/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

25 lines
682 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, texinfo }:
stdenv.mkDerivation rec {
pname = "macchanger";
version = "1.7.0";
src = fetchFromGitHub {
owner = "alobbs";
repo = "macchanger";
rev = version;
sha256 = "1hypx6sxhd2b1nsxj314hpkhj7q4x9p2kfaaf20rjkkkig0nck9r";
};
nativeBuildInputs = [ autoreconfHook texinfo ];
outputs = [ "out" "info" ];
meta = with lib; {
description = "A utility for viewing/manipulating the MAC address of network interfaces";
maintainers = with maintainers; [ joachifm ma27 ];
license = licenses.gpl2Plus;
homepage = "https://www.gnu.org/software/macchanger";
platforms = platforms.linux;
};
}