about summary refs log tree commit diff
path: root/pkgs/tools/networking/dibbler/default.nix
blob: 82ef3b218d08d21d2dc4d3f5f2bdaeaea661b7ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "dibbler-${version}";
  version = "1.0.1";

  src = fetchurl {
    url = "http://www.klub.com.pl/dhcpv6/dibbler/${name}.tar.gz";
    sha256 = "18bnwkvax02scjdg5z8gvrkvy1lhssfnlpsaqb5kkh30w1vri1i7";
  };

  configureFlags = [
    "--enable-resolvconf"
  ];

  meta = with stdenv.lib; {
    description = "Portable DHCPv6 implementation";
    homepage = http://www.klub.com.pl/dhcpv6/;
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = with maintainers; [ fpletz ];
  };
}