nixpkgs/pkgs/applications/audio/aj-snapshot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, alsa-lib, jack2, minixml, pkg-config }:
2015-11-30 01:24:32 +00:00
stdenv.mkDerivation rec {
2022-03-22 16:57:23 +00:00
pname = "aj-snapshot" ;
version = "0.9.9";
2015-11-30 01:24:32 +00:00
src = fetchurl {
2022-03-22 16:57:23 +00:00
url = "mirror://sourceforge/aj-snapshot/aj-snapshot-${version}.tar.bz2";
sha256 = "0z8wd5yvxdmw1h1rj6km9h01xd4xmp4d86gczlix7hsc7zrf0wil";
2015-11-30 01:24:32 +00:00
};
doCheck = false;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib minixml jack2 ];
2015-11-30 01:24:32 +00:00
meta = with lib; {
2015-11-30 01:24:32 +00:00
description = "Tool for storing/restoring JACK and/or ALSA connections to/from cml files";
longDescription = ''
2021-01-01 13:46:40 +00:00
Aj-snapshot is a small program that can be used to make snapshots of the connections made between JACK and/or ALSA clients.
Because JACK can provide both audio and MIDI support to programs, aj-snapshot can store both types of connections for JACK.
ALSA, on the other hand, only provides routing facilities for MIDI clients.
2015-11-30 01:24:32 +00:00
You can also run aj-snapshot in daemon mode if you want to have your connections continually restored.
'';
homepage = "http://aj-snapshot.sourceforge.net/";
2015-11-30 01:24:32 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.mrVanDalo ];
2015-11-30 01:24:32 +00:00
platforms = platforms.all;
};
}