Skip to content

Commit

Permalink
Merge pull request NixOS#234613 from stteague/flamp
Browse files Browse the repository at this point in the history
flamp: init at 2.2.07
  • Loading branch information
drupol authored Jun 2, 2023
2 parents a64e4f9 + e665b6b commit 382388c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15214,6 +15214,12 @@
githubId = 38893265;
name = "StrikerLulu";
};
stteague = {
email = "stteague505@yahoo.com";
github = "stteague";
githubId = 77596767;
name = "Scott Teague";
};
stumoss = {
email = "samoss@gmail.com";
github = "stumoss";
Expand Down
41 changes: 41 additions & 0 deletions pkgs/applications/radio/flamp/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchgit
, autoreconfHook
, pkg-config
, fltk13
, libsndfile
, gettext
}:

stdenv.mkDerivation (finalAttrs: {
pname = "flamp";
version = "2.2.07";

src = fetchgit {
url = "https://git.code.sf.net/p/fldigi/flamp";
rev = "v${finalAttrs.version}";
hash = "sha256-BnKL1iwaw1iJC5qcGCvdMr461n0BSYxk61dbAnhpz2c=";
};

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";
};
})
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30450,6 +30450,8 @@ with pkgs;

flacon = libsForQt5.callPackage ../applications/audio/flacon { };

flamp = callPackage ../applications/radio/flamp { };

flexget = callPackage ../applications/networking/flexget { };

fldigi = callPackage ../applications/radio/fldigi {
Expand Down

0 comments on commit 382388c

Please sign in to comment.