forked from mirrors/nixpkgs
gaw: init at version 20200922
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
a40de4b146
commit
5d702c6b23
34
pkgs/applications/science/electronics/gaw/default.nix
Normal file
34
pkgs/applications/science/electronics/gaw/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue