mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
added flwrap: fldigi companion application
Signed-off-by: Tim Dysinger <tim@dysinger.net>
This commit is contained in:
parent
f95183f345
commit
b560d6499f
34
pkgs/applications/misc/flwrap/default.nix
Normal file
34
pkgs/applications/misc/flwrap/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, fltk13
|
||||||
|
, libjpeg
|
||||||
|
, pkgconfig
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.3.5";
|
||||||
|
pname = "flwrap";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/fldigi/${name}.tar.gz";
|
||||||
|
sha256 = "0qqivqkkravcg7j45740xfky2q3k7czqpkj6y364qff424q2pppg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
fltk13
|
||||||
|
libjpeg
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Digital modem file transfer program";
|
||||||
|
homepage = https://sourceforge.net/projects/fldigi/;
|
||||||
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ dysinger ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -16433,6 +16433,8 @@ with pkgs;
|
|||||||
|
|
||||||
flmsg = callPackage ../applications/misc/flmsg { };
|
flmsg = callPackage ../applications/misc/flmsg { };
|
||||||
|
|
||||||
|
flwrap = callPackage ../applications/misc/flwrap { };
|
||||||
|
|
||||||
fluidsynth = callPackage ../applications/audio/fluidsynth {
|
fluidsynth = callPackage ../applications/audio/fluidsynth {
|
||||||
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio CoreMIDI CoreServices;
|
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio CoreMIDI CoreServices;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user