mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
f8dc849739
See release announcements: - 4.0.33: https://lists.gnu.org/archive/html/info-gnu/2021-07/msg00006.html - 4.0.32: https://lists.gnu.org/archive/html/info-gnu/2021-07/msg00004.html
26 lines
628 B
Nix
26 lines
628 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mtools";
|
|
version = "4.0.33";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/mtools/${pname}-${version}.tar.bz2";
|
|
sha256 = "0m5rx8djvg4jfvdgs4dxjkfd2na55wkdpid9xa32yc103s70zc8w";
|
|
};
|
|
|
|
patches = lib.optional stdenv.isDarwin ./UNUSED-darwin.patch;
|
|
|
|
# fails to find X on darwin
|
|
configureFlags = lib.optional stdenv.isDarwin "--without-x";
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/mtools/";
|
|
description = "Utilities to access MS-DOS disks";
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|