cc9d1d8b6d
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
25 lines
837 B
Nix
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;
|
|
};
|
|
}
|