summary refs log tree commit diff
path: root/pkgs/tools/backup/mtx/default.nix
blob: 2a2dd80c566bfe96b51684ff6e26ee62f3616083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "mtx-1.3.12";

  src = fetchurl {
    url = "mirror://gentoo/distfiles/${name}.tar.gz";
    sha256 = "0261c5e90b98b6138cd23dadecbc7bc6e2830235145ed2740290e1f35672d843";
  };

  doCheck = false;

  meta = {
    description = "Media Changer Tools";
    longDescription = ''
      The mtx command controls single or multi-drive SCSI media changers such as
      tape changers, autoloaders, tape libraries, or optical media jukeboxes. It
      can also be used with media changers that use the 'ATTACHED' API, presuming
      that they properly report the MChanger bit as required by the SCSI T-10 SMC
      specification.
    '';
    homepage = "https://sourceforge.net/projects/mtx/";
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.redvers ];
    platforms = stdenv.lib.platforms.linux;
  };
}