nixpkgs/pkgs/applications/radio/fllog/default.nix
2021-08-07 20:36:28 +00:00

35 lines
634 B
Nix

{ lib
, stdenv
, fetchurl
, fltk13
, libjpeg
, pkg-config
}:
stdenv.mkDerivation rec {
version = "1.2.7";
pname = "fllog";
src = fetchurl {
url = "mirror://sourceforge/fldigi/${pname}-${version}.tar.gz";
sha256 = "sha256-HxToZ+f1IJgDKGPHBeVuS7rRkh3+KfpyoYPBwfyqsC8=";
};
buildInputs = [
fltk13
libjpeg
];
nativeBuildInputs = [
pkg-config
];
meta = {
description = "Digital modem log program";
homepage = "https://sourceforge.net/projects/fldigi/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dysinger ];
platforms = lib.platforms.linux;
};
}