nixpkgs/pkgs/by-name/fl/flamp/package.nix

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

43 lines
809 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchgit,
autoreconfHook,
pkg-config,
fltk13,
gettext,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "flamp";
2024-10-17 21:17:30 +00:00
version = "2.2.14";
src = fetchgit {
url = "https://git.code.sf.net/p/fldigi/flamp";
rev = "v${finalAttrs.version}";
2024-10-17 21:17:30 +00:00
hash = "sha256-y8x/0rLJSHL1B61ODtjmf2S6W7ChZasBfFE9lc66FSI=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
gettext
];
buildInputs = [
fltk13
];
enableParallelBuilding = true;
meta = with lib; {
description = "Digital modem program";
homepage = "https://sourceforge.net/projects/fldigi/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ stteague ];
platforms = platforms.unix;
broken = stdenv.system == "x86_64-darwin";
2024-02-11 02:19:15 +00:00
mainProgram = "flamp";
};
})