nixpkgs/pkgs/tools/backup/mt-st/default.nix
2021-01-15 17:12:36 +07:00

24 lines
682 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mt-st-1.3";
src = fetchurl {
url = "https://github.com/iustin/mt-st/releases/download/${name}/${name}.tar.gz";
sha256 = "b552775326a327cdcc076c431c5cbc4f4e235ac7c41aa931ad83f94cccb9f6de";
};
installFlags = [ "PREFIX=$(out)" "EXEC_PREFIX=$(out)" ];
meta = {
description = "Magnetic Tape control tools for Linux";
longDescription = ''
Fork of the standard "mt" tool with additional Linux-specific IOCTLs.
'';
homepage = "https://github.com/iustin/mt-st";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.redvers ];
platforms = lib.platforms.linux;
};
}