gaw: init at version 20200922

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Federico Beffa 2022-03-12 15:27:57 +01:00
parent a40de4b146
commit 5d702c6b23
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ stdenv
, fetchurl
, lib
, gtk3
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "gaw";
version = "20200922";
src = fetchurl {
url = "https://download.tuxfamily.org/gaw/download/gaw3-${version}.tar.gz";
sha256 = "0qmap11v470a1yj4ypfvdq6wkfni77ijqpknka8b4fndi62sl4wa";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 ];
meta = with lib; {
description = "Gtk Analog Wave viewer";
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 ];
platforms = platforms.all;
};
}

View File

@ -32701,6 +32701,8 @@ with pkgs;
fped = callPackage ../applications/science/electronics/fped { };
gaw = callPackage ../applications/science/electronics/gaw {};
horizon-eda = callPackage ../applications/science/electronics/horizon-eda {};
# this is a wrapper for kicad.base and kicad.libraries