2016-09-11 23:24:51 +02:00
|
|
|
{stdenv, fetchurl, gtk2, pkgconfig}:
|
2010-06-13 12:01:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xoscope-2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xoscope/${name}.tgz";
|
|
|
|
sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 ];
|
2010-06-13 12:01:16 +02:00
|
|
|
|
2012-11-26 16:07:33 +01:00
|
|
|
# from: https://aur.archlinux.org/packages.php?ID=12140&detail=1
|
|
|
|
patches = [ ./gtkdepre.diff ];
|
|
|
|
|
2010-06-13 12:01:16 +02:00
|
|
|
meta = {
|
2010-06-13 21:32:32 +02:00
|
|
|
description = "Oscilloscope through the sound card";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://xoscope.sourceforge.net";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-06-13 12:01:16 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|