My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/radio/aldo/default.nix

26 lines
618 B

{ 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 = with maintainers; [ etu ];
platforms = platforms.linux;
};
}