summary refs log blame commit diff
path: root/pkgs/development/libraries/libnet/default.nix
blob: 1e445b20f6821ac2482dfbce9caf0546ad2eaa89 (plain) (tree)
1
2
3
4
5
6
7
8
9



                             
                      


                                                           
                                                                    

    
                           
                                                   
                                                                                 


                                                    

    
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libnet-${version}";
  version = "1.2-rc3";

  src = fetchurl {
    url = "mirror://sourceforge/libnet-dev/${name}.tar.gz";
    sha256 = "0qsapqa7dzq9f6lb19kzilif0pj82b64fjv5bq086hflb9w81hvj";
  };

  meta = with stdenv.lib; {
    homepage = http://github.com/sam-github/libnet;
    description = "Portable framework for low-level network packet construction";
    license = licenses.bsd3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ wkennington ];
  };
}