2022-03-12 14:27:57 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, lib
|
|
|
|
, gtk3
|
|
|
|
, pkg-config
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gaw";
|
2022-03-16 07:01:53 +00:00
|
|
|
version = "20220315";
|
2022-03-12 14:27:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.tuxfamily.org/gaw/download/gaw3-${version}.tar.gz";
|
2022-03-16 07:01:53 +00:00
|
|
|
sha256 = "0j2bqi9444s1mfbr7x9rqp232xf7ab9z7ifsnl305jsklp6qmrbg";
|
2022-03-12 14:27:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Gtk Analog Wave viewer";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gaw";
|
2022-03-12 14:27:57 +00:00
|
|
|
longDescription = ''
|
|
|
|
Gaw is a software tool for displaying analog waveforms from
|
|
|
|
sampled datas, for example from the output of simulators or
|
|
|
|
input from sound cards. Data can be imported to gaw using files,
|
|
|
|
direct tcp/ip connection or directly from the sound card.
|
|
|
|
'';
|
|
|
|
homepage = "http://gaw.tuxfamily.org";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ fbeffa ];
|
2022-07-10 03:31:19 +00:00
|
|
|
platforms = platforms.linux;
|
2022-03-12 14:27:57 +00:00
|
|
|
};
|
|
|
|
}
|