nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / libraries / gensio / default.nix
blobbfdd37d93746b999048339401160ffbad8b67d08
2   autoreconfHook,
3   fetchFromGitHub,
4   lib,
5   nix-update-script,
6   openssl,
7   pkg-config,
8   stdenv,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "gensio";
13   version = "2.8.9";
15   src = fetchFromGitHub {
16     owner = "cminyard";
17     repo = pname;
18     rev = "v${version}";
19     sha256 = "sha256-xW3I1OfL+AfbeKf/kwBdsZRoCsPPZ7oLMppeIepn/P0=";
20   };
22   passthru = {
23     updateScript = nix-update-script { };
24   };
26   configureFlags = [
27     "--with-python=no"
28   ];
30   nativeBuildInputs = [
31     autoreconfHook
32     pkg-config
33   ];
35   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ openssl ];
37   meta = with lib; {
38     description = "General Stream I/O";
39     homepage = "https://sourceforge.net/projects/ser2net/";
40     license = licenses.gpl2;
41     maintainers = with maintainers; [ emantor ];
42     mainProgram = "gensiot";
43     platforms = platforms.unix;
44   };