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

28 lines
624 B
Nix
Raw Normal View History

2020-01-11 08:30:47 +00:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "gensio";
2020-08-03 05:46:42 +01:00
version = "2.1.3";
2020-01-11 08:30:47 +00:00
src = fetchFromGitHub {
owner = "cminyard";
repo = "${pname}";
rev = "v${version}";
2020-08-03 05:46:42 +01:00
sha256 = "0sdqv4j1jjjc2nxnd9h7r4w66bdjl5ksvfia4i4cjj7jfl0hhynl";
2020-01-11 08:30:47 +00:00
};
configureFlags = [
"--with-python=no"
];
buildInputs = [ autoreconfHook ];
meta = with lib; {
description = "General Stream I/O";
homepage = "https://sourceforge.net/projects/ser2net/";
license = licenses.gpl2;
maintainers = with maintainers; [ emantor ];
platforms = with platforms; linux;
};
}