mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
19 lines
492 B
Nix
19 lines
492 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libnet-${version}";
|
|
version = "1.2-rc2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libnet-dev/${name}.tar.gz";
|
|
sha256 = "1pc74p839a7wvhjdgy0scj7c4yarr6mqdqvj56k6sp8pkc763az7";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://github.com/sam-github/libnet;
|
|
description = "Portable framework for low-level network packet construction";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|