forked from mirrors/nixpkgs
a211d94291
after https://github.com/Mic92/nix-update/pull/120 and https://github.com/NixOS/nixpkgs/pull/207703, `attrPath` can now be omitted when using `nix-update-script`
38 lines
755 B
Nix
38 lines
755 B
Nix
{ autoreconfHook
|
|
, fetchFromGitHub
|
|
, gensio
|
|
, lib
|
|
, libyaml
|
|
, nix-update-script
|
|
, pkg-config
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ser2net";
|
|
version = "4.3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cminyard";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-5Jo6wwxRwf6JbpG7vEGpEBFA9b0v7DqbfpvgETHHhpY=";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
|
|
buildInputs = [ gensio libyaml ];
|
|
|
|
meta = with lib; {
|
|
description = "Serial to network connection server";
|
|
homepage = "https://github.com/cminyard/ser2net";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ emantor ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|