2010-06-13 12:01:16 +02:00
|
|
|
{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 = {
|
2010-06-13 21:32:32 +02:00
|
|
|
description = "Oscilloscope through the sound card";
|
2010-06-13 12:01:16 +02:00
|
|
|
homepage = http://xoscope.sourceforge.net;
|
|
|
|
license = "GPLv2+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|