nixpkgs/pkgs/applications/science/electronics/xoscope/default.nix

25 lines
662 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl, gtk2, pkg-config}:
stdenv.mkDerivation rec {
name = "xoscope-2.0";
src = fetchurl {
url = "mirror://sourceforge/xoscope/${name}.tgz";
sha256 = "00xlvvqyw6l1ljbsx1vgx2v1jfh0xacz1a0yhq1dj6yxf5wh58x8";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk2 ];
2012-11-26 15:07:33 +00:00
# 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-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux;
};
}