nixpkgs/pkgs/servers/ser2net/default.nix

40 lines
787 B
Nix
Raw Normal View History

{ autoreconfHook
, fetchFromGitHub
, gensio
, lib
, libyaml
, nix-update-script
, pkg-config
, stdenv
}:
2020-01-11 08:31:51 +00:00
stdenv.mkDerivation rec {
pname = "ser2net";
version = "4.3.0";
2020-01-11 08:31:51 +00:00
src = fetchFromGitHub {
owner = "cminyard";
repo = pname;
2020-01-11 08:31:51 +00:00
rev = "v${version}";
sha256 = "13zhds3zav03f1snc4bb1j07i2x606bmnqm17yx37frib2hjs4nx";
2020-01-11 08:31:51 +00:00
};
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ gensio libyaml ];
2020-01-11 08:31:51 +00:00
meta = with lib; {
description = "Serial to network connection server";
homepage = "https://sourceforge.net/projects/ser2net/";
license = licenses.gpl2;
maintainers = with maintainers; [ emantor ];
platforms = with platforms; linux;
};
}