nixpkgs/pkgs/applications/networking/nntp-proxy/default.nix

34 lines
902 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libconfig, pkgconfig, libevent, openssl }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "nntp-proxy";
version = "2014-01-06";
src = fetchFromGitHub {
owner = "nieluj";
repo = "nntp-proxy";
rev = "0358e7ad6c4676f90ac5074320b16e1461b0011a";
sha256 = "0jwxh71am83fbnq9mn06jl06rq8qybm506js79xmmc3xbk5pqvy4";
};
2017-09-15 17:10:23 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libconfig libevent openssl ];
2017-09-15 17:10:23 +00:00
installFlags = [ "INSTALL_DIR=$(out)/bin/" ];
2017-09-15 17:10:23 +00:00
prePatch = ''
mkdir -p $out/bin
substituteInPlace Makefile \
2017-09-15 17:10:23 +00:00
--replace /usr/bin/install $(type -P install) \
--replace gcc cc
'';
meta = {
description = "Simple NNTP proxy with SSL support";
homepage = https://github.com/nieluj/nntp-proxy;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.fadenb ];
platforms = stdenv.lib.platforms.all;
};
}