nixpkgs/pkgs/development/libraries/ntrack/default.nix

38 lines
991 B
Nix
Raw Normal View History

{ stdenv, fetchurl, qt4, pkgconfig, libnl, python }:
let
version = "016";
in
stdenv.mkDerivation rec {
name = "ntrack-${version}";
src = fetchurl {
2018-11-25 01:47:52 +03:00
url = "https://launchpad.net/ntrack/main/${version}/+download/${name}.tar.gz";
sha256 = "037ig5y0mp327m0hh4pnfr3vmsk3wrxgfjy3645q4ws9vdhx807w";
};
buildInputs = [ libnl qt4 ];
nativeBuildInputs = [ pkgconfig python ];
2019-03-26 02:50:07 +03:00
# error: ISO C does not support '__FUNCTION__' predefined identifier [-Werror=pedantic]
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
2018-07-26 00:44:21 +03:00
configureFlags = [ "--without-gobject" "CFLAGS=--std=gnu99" ];
2013-12-02 20:40:22 +04:00
# Remove this patch after version 016
patches = [ ./libnl-fix.patch ];
postPatch = ''
sed -e "s@/usr\(/lib/ntrack/modules/\)@$out&@" -i common/ntrack.c
'';
2018-10-25 22:46:20 +03:00
meta = with stdenv.lib; {
description = "Network Connectivity Tracking library for Desktop Applications";
homepage = https://launchpad.net/ntrack;
2018-10-25 22:46:20 +03:00
platforms = platforms.linux;
license = licenses.lgpl3Plus;
};
}