gensio: init at 1.3.3
This commit is contained in:
parent
0751c48313
commit
8b3715608c
27
pkgs/development/libraries/gensio/default.nix
Normal file
27
pkgs/development/libraries/gensio/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user