nixpkgs/pkgs/applications/audio/fldigi/default.nix
R. RyanTM cc9d1d8b6d fldigi: 4.0.16 -> 4.0.17
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/fldigi/versions.

These checks were done:

- built on NixOS
- /nix/store/87mml563vxqamznb9i9kfyi1pz9ldkxj-fldigi-4.0.17/bin/fldigi passed the binary check.
- Warning: no invocation of /nix/store/87mml563vxqamznb9i9kfyi1pz9ldkxj-fldigi-4.0.17/bin/flarq had a zero exit code or showed the expected version
- 1 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 4.0.17 with grep in /nix/store/87mml563vxqamznb9i9kfyi1pz9ldkxj-fldigi-4.0.17
- directory tree listing: https://gist.github.com/fa90913d77a29b869e48c2c455710bd7
- du listing: https://gist.github.com/9172dd2cacb00accaffafe285aacea29
2018-06-19 12:06:34 -07:00

25 lines
837 B
Nix

{ stdenv, fetchurl, hamlib, fltk13, libjpeg, libpng, portaudio, libsndfile,
libsamplerate, libpulseaudio, libXinerama, gettext, pkgconfig, alsaLib }:
stdenv.mkDerivation rec {
version = "4.0.17";
pname = "fldigi";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
sha256 = "1z8w0dxfc2nm1iy1vv18s5s88ys9vvbqawjvhsymxj56jqjzzp4q";
};
buildInputs = [ libXinerama gettext hamlib fltk13 libjpeg libpng portaudio
libsndfile libsamplerate libpulseaudio pkgconfig alsaLib ];
meta = {
description = "Digital modem program";
homepage = https://sourceforge.net/projects/fldigi/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [ relrod ftrvxmtrx ];
platforms = stdenv.lib.platforms.linux;
};
}