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

rp-pppoe: add license

+3 -2
+3 -2
pkgs/tools/networking/rp-pppoe/default.nix
··· 21 sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@' 22 ''; 23 24 - meta = { 25 description = "Roaring Penguin Point-to-Point over Ethernet tool"; 26 - platforms = stdenv.lib.platforms.linux; 27 homepage = https://www.roaringpenguin.com/products/pppoe; 28 }; 29 }
··· 21 sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@' 22 ''; 23 24 + meta = with stdenv.lib; { 25 description = "Roaring Penguin Point-to-Point over Ethernet tool"; 26 + platforms = platforms.linux; 27 homepage = https://www.roaringpenguin.com/products/pppoe; 28 + license = licenses.gpl2Plus; 29 }; 30 }