nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 42 lines 815 B view raw
1{ 2 lib, 3 stdenv, 4 fetchgit, 5 autoreconfHook, 6 pkg-config, 7 fltk_1_3, 8 gettext, 9}: 10 11stdenv.mkDerivation (finalAttrs: { 12 pname = "flamp"; 13 version = "2.2.14"; 14 15 src = fetchgit { 16 url = "https://git.code.sf.net/p/fldigi/flamp"; 17 rev = "v${finalAttrs.version}"; 18 hash = "sha256-y8x/0rLJSHL1B61ODtjmf2S6W7ChZasBfFE9lc66FSI="; 19 }; 20 21 nativeBuildInputs = [ 22 autoreconfHook 23 pkg-config 24 gettext 25 ]; 26 27 buildInputs = [ 28 fltk_1_3 29 ]; 30 31 enableParallelBuilding = true; 32 33 meta = { 34 description = "Digital modem program"; 35 homepage = "https://sourceforge.net/projects/fldigi/"; 36 license = lib.licenses.gpl3Plus; 37 maintainers = with lib.maintainers; [ stteague ]; 38 platforms = lib.platforms.unix; 39 broken = stdenv.system == "x86_64-darwin"; 40 mainProgram = "flamp"; 41 }; 42})