summary refs log blame commit diff
path: root/pkgs/tools/filesystems/dosfstools/default.nix
blob: 82f64362fadfd503b51b88320a0a0da7c913b2db (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                 
 
                         
                                 
                  
 



                         
                                                                    

    

                                                    
 

                                                  
          
                                                                                  
                                                        
                                                                          
                                       
    
 
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libiconv }:

stdenv.mkDerivation rec {
  name = "dosfstools-${version}";
  version = "4.1";

  src = fetchFromGitHub {
    owner = "dosfstools";
    repo = "dosfstools";
    rev = "v${version}";
    sha256 = "1a2zn1655d5f1m6jp9vpn3bp8yfxhcmxx3mx23ai9hmxiydiykr1";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ]
    ++ stdenv.lib.optional stdenv.isDarwin libiconv;

  configureFlags = [ "--enable-compat-symlinks" ];

  meta = {
    description = "Utilities for creating and checking FAT and VFAT file systems";
    homepage = https://github.com/dosfstools/dosfstools;
    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
    license = stdenv.lib.licenses.gpl3;
  };
}