mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4e931c92ec
Aldo is a morse code traning program: http://aldo.nongnu.org/
22 lines
521 B
Nix
22 lines
521 B
Nix
{ 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;
|
|
};
|
|
}
|