nixpkgs/pkgs/tools/backup/mtx/default.nix

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

29 lines
893 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl }:
2016-05-28 04:26:54 +00:00
stdenv.mkDerivation rec {
2021-08-12 19:47:47 +00:00
pname = "mtx";
version = "1.3.12";
2016-05-28 04:26:54 +00:00
src = fetchurl {
2021-08-12 19:47:47 +00:00
url = "mirror://gentoo/distfiles/mtx-${version}.tar.gz";
2016-05-28 04:26:54 +00:00
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/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.redvers ];
platforms = lib.platforms.linux;
2016-05-28 04:26:54 +00:00
};
}