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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
784 B
Nix
Raw Normal View History

{ autoreconfHook
, fetchFromGitHub
, lib
, nix-update-script
, pkg-config
, stdenv
}:
2020-01-11 09:30:47 +01:00
stdenv.mkDerivation rec {
pname = "gensio";
2022-04-19 05:03:19 +02:00
version = "2.3.7";
2020-01-11 09:30:47 +01:00
src = fetchFromGitHub {
owner = "cminyard";
repo = pname;
2020-01-11 09:30:47 +01:00
rev = "v${version}";
2022-04-19 05:03:19 +02:00
sha256 = "sha256-g1o/udsIFLJ+gunvI2QtsnksPaa946jWKkcdmdGmQ/k=";
};
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
2020-01-11 09:30:47 +01:00
};
configureFlags = [
"--with-python=no"
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2020-01-11 09:30:47 +01:00
meta = with lib; {
description = "General Stream I/O";
homepage = "https://sourceforge.net/projects/ser2net/";
license = licenses.gpl2;
maintainers = with maintainers; [ emantor ];
mainProgram = "gensiot";
2021-03-08 15:57:56 +01:00
platforms = platforms.unix;
2020-01-11 09:30:47 +01:00
};
}