mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
663 B
Nix
30 lines
663 B
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libnet";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sam-github";
|
|
repo = "libnet";
|
|
rev = "v${version}";
|
|
hash = "sha256-P3LaDMMNPyEnA8nO1Bm7H0mW/hVBr0cFdg+p2JmWcGI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sam-github/libnet";
|
|
description = "Portable framework for low-level network packet construction";
|
|
mainProgram = "libnet-config";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|