mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
b5213d5b0f
* nettools: fix url; avoid gentoo/distfiles which now uses hashed directories * pax-utils: fix url; avoid gentoo/distfiles which now uses hashed directories The project doesn't seem to publish the exact tarball which was relied on, but we can fetch the sources from the original repository. (This implies some rebuilds.) * mtx: fix url; avoid gentoo/distfiles which now uses hashed directories * vlan: fix url; avoid gentoo/distfiles which now uses hashed directories
29 lines
929 B
Nix
29 lines
929 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mtx";
|
|
version = "1.3.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-stable/${version}/${pname}-${version}.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 = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.redvers ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|