mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Adding xoscope (oscilloscope for the sound card input, among others)
svn path=/nixpkgs/trunk/; revision=22242
This commit is contained in:
parent
9eb2cf4906
commit
b1946eec91
2 changed files with 26 additions and 0 deletions
20
pkgs/applications/science/electronics/xoscope/default.nix
Normal file
20
pkgs/applications/science/electronics/xoscope/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{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 = {
|
||||
description = "Oscilloscope trough the sound card";
|
||||
homepage = http://xoscope.sourceforge.net;
|
||||
license = "GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -9510,6 +9510,12 @@ let
|
|||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
||||
xoscope = import ../applications/science/electronics/xoscope {
|
||||
inherit fetchurl stdenv pkgconfig;
|
||||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
||||
|
||||
### SCIENCE / MATH
|
||||
|
||||
maxima = import ../applications/science/math/maxima {
|
||||
|
|
Loading…
Reference in a new issue