Adding xoscope (oscilloscope for the sound card input, among others)

svn path=/nixpkgs/trunk/; revision=22242
This commit is contained in:
Lluís Batlle i Rossell 2010-06-13 10:01:16 +00:00
parent 9eb2cf4906
commit b1946eec91
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{stdenv, fetchurl, gtk, pkgconfig}:
stdenv.mkDerivation rec {
name = "xoscope-2.0";
src = fetchurl {
url = "mirror://sourceforge/xoscope/${name}.tgz";
sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8";
};
buildInputs = [ gtk pkgconfig ];
meta = {
description = "Oscilloscope trough the sound card";
homepage = http://xoscope.sourceforge.net;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -9510,6 +9510,12 @@ let
inherit (gtkLibs) gtk;
};
xoscope = import ../applications/science/electronics/xoscope {
inherit fetchurl stdenv pkgconfig;
inherit (gtkLibs) gtk;
};
### SCIENCE / MATH
maxima = import ../applications/science/math/maxima {