Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
27 lines
622 B
Nix
27 lines
622 B
Nix
{ lib, stdenv, fetchgit, libao, autoreconfHook }:
|
|
|
|
let
|
|
pname = "aldo";
|
|
version = "0.7.8";
|
|
in stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchgit {
|
|
url = "git://git.savannah.gnu.org/${pname}.git";
|
|
rev = "v${version}";
|
|
sha256 = "0swvdq0pw1msy40qkpn1ar9kacqjyrw2azvf2fy38y0svyac8z2i";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libao ];
|
|
|
|
meta = with lib; {
|
|
description = "Morse code training program";
|
|
homepage = "http://aldo.nongnu.org/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "aldo";
|
|
};
|
|
}
|