nixpkgs/pkgs/os-specific/linux/macchanger/default.nix

26 lines
687 B
Nix
Raw Normal View History

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