mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
895 B
Nix
34 lines
895 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
|
, openssl
|
|
, libcap, libpcap, libnfnetlink, libnetfilter_conntrack, libnetfilter_queue
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tcpcrypt";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "tcpcrypt";
|
|
owner = "scslab";
|
|
rev = "v${version}";
|
|
sha256 = "0a015rlyvagz714pgwr85f8gjq1fkc0il7d7l39qcgxrsp15b96w";
|
|
};
|
|
|
|
postUnpack = "mkdir -vp $sourceRoot/m4";
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ openssl libpcap ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ libcap libnfnetlink libnetfilter_conntrack libnetfilter_queue ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "http://tcpcrypt.org/";
|
|
description = "Fast TCP encryption";
|
|
platforms = platforms.all;
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|