mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 14:23:19 +00:00
a68c1adc35
Says: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" CC: #4803. There will likely appear more of these errors on Hydra in time.
30 lines
660 B
Nix
30 lines
660 B
Nix
{ stdenv, fetchurl, gnutls }:
|
|
|
|
let
|
|
ver = "1.99.10";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "inadyn-${ver}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/troglobit/inadyn/archive/${ver}.tar.gz";
|
|
sha256 = "0m3qnnq99siwf1ybcvbzdawk68lxf61vd13fw1f2ssl2m07hfxg3";
|
|
};
|
|
|
|
preConfigure = ''
|
|
export makeFlags=prefix=$out
|
|
'';
|
|
|
|
buildInputs = [ gnutls ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=cpp";
|
|
|
|
meta = {
|
|
homepage = http://inadyn.sourceforge.net/;
|
|
description = "Free dynamic DNS client";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|