mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
33 lines
694 B
Nix
33 lines
694 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, gtk3
|
|
, gtkdatabox
|
|
, fftw
|
|
, gnum4
|
|
, comedilib
|
|
, alsa-lib
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xoscope";
|
|
version = "2.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xoscope/${pname}-${version}.tar.gz";
|
|
sha256 = "0a5ycfc1qdmibvagc82r2mhv2i99m6pndy5i6ixas3j2297g6pgq";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config gnum4 ];
|
|
buildInputs = [ gtk3 gtkdatabox fftw comedilib alsa-lib ];
|
|
|
|
meta = {
|
|
description = "Oscilloscope through the sound card";
|
|
mainProgram = "xoscope";
|
|
homepage = "https://xoscope.sourceforge.net";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|