summary refs log tree commit diff
path: root/pkgs/os-specific/linux/macchanger/default.nix
blob: 1f046de40edd20f51abc0039a99effbaf1e9a745 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl }:

let
  pname = "macchanger";
  version = "1.6.0";
in

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  src = fetchurl {
    url = "mirror://gnu/${pname}/${name}.tar.gz";
    sha256 = "31534f138f1d21fa247be74ba6bef3fbfa47bbcd5033e99bd10c432fe58e51f7";
  };

  meta = {
    description = "A utility for viewing/manipulating the MAC address of network interfaces";
    maintainers = with stdenv.lib.maintainers; [ joachifm ];
    license = with stdenv.lib.licenses; gpl2Plus;
    homepage = "https://www.gnu.org/software/macchanger";
    platform = with stdenv.lib.platforms; linux;
  };
}