2021-02-05 17:12:51 +00:00
|
|
|
{lib, stdenv, fetchurl, gtk2, pkg-config}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xoscope-2.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xoscope/${name}.tgz";
|
|
|
|
sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ gtk2 ];
|
|
|
|
|
|
|
|
# from: https://aur.archlinux.org/packages.php?ID=12140&detail=1
|
|
|
|
patches = [ ./gtkdepre.diff ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Oscilloscope through the sound card";
|
|
|
|
homepage = "http://xoscope.sourceforge.net";
|
2021-01-17 00:15:33 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|