Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ndisc6: 1.0.2 -> 1.0.3

+14 -7
+14 -7
pkgs/tools/networking/ndisc6/default.nix
··· 1 1 { stdenv, fetchurl, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ndisc6-1.0.2"; 4 + name = "ndisc6-1.0.3"; 5 5 6 6 src = fetchurl { 7 7 url = "http://www.remlab.net/files/ndisc6/archive/${name}.tar.bz2"; 8 - sha256 = "0ynacanjhlib4japqmf7n2c0bv5f2qq6rx2nhk4kmylyrfhcikka"; 8 + sha256 = "08f8xrsck2ykszp12yxx4ssf6wnkn7l6m59456hw3vgjyp5dch8g"; 9 9 }; 10 10 11 11 buildInputs = [ perl ]; 12 12 13 - configureFlags = "--localstatedir=/var"; 13 + configureFlags = [ 14 + "--sysconfdir=/etc" 15 + "--localstatedir=/var" 16 + ]; 14 17 15 - installFlags = "localstatedir=$(TMPDIR)"; 18 + installFlags = [ 19 + "sysconfdir=\${out}/etc" 20 + "localstatedir=$(TMPDIR)" 21 + ]; 16 22 17 - meta = { 23 + meta = with stdenv.lib; { 18 24 homepage = http://www.remlab.net/ndisc6/; 19 25 description = "A small collection of useful tools for IPv6 networking"; 20 - maintainers = [ stdenv.lib.maintainers.eelco ]; 21 - platforms = stdenv.lib.platforms.linux; 26 + maintainers = with maintainers; [ eelco wkennington ]; 27 + platforms = platforms.linux; 28 + license = licenses.gpl2; 22 29 }; 23 30 }