aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/radio/aldo/default.nix
blob: df52531a518d75c1331bf396c86ce9d5f527d173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, libao }:

stdenv.mkDerivation rec {
  pname = "aldo";
  version = "0.7.7";

  src = fetchurl {
    url = "mirror://savannah/${pname}/${pname}-${version}.tar.bz2";
    sha256 = "14lzgldqzbbzydsy1cai3wln3hpyj1yhj8ji3wygyzr616fq9f7i";
  };

  buildInputs = [ libao ];

  meta = with stdenv.lib; {
    description = "Morse code training program";
    homepage = "http://aldo.nongnu.org/";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ etu ];
    platforms = platforms.linux;
  };
}