gensio: init at 1.3.3

This commit is contained in:
Rouven Czerwinski
2020-01-22 16:42:27 +01:00
committed by Bjørn Forsman
parent 0751c48313
commit 8b3715608c
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "gensio";
version = "1.3.3";
src = fetchFromGitHub {
owner = "cminyard";
repo = "${pname}";
rev = "v${version}";
sha256 = "04yrm3kg8m77kh6z0b9yw4h43fm0d54wnyrd8lp5ddn487kawm5g";
};
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;
};
}
+2
View File
@@ -11477,6 +11477,8 @@ in
inherit (darwin.apple_sdk.frameworks) OpenCL;
};
gensio = callPackage ../development/libraries/gensio {};
geoclue2 = callPackage ../development/libraries/geoclue {};
geocode-glib = callPackage ../development/libraries/geocode-glib {};