mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
c92ac3b1d6
Both packages have been merged as https://github.com/relan/exfat. Follow suit.
27 lines
652 B
Nix
27 lines
652 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
|
|
|
|
let version = "1.2.0"; in
|
|
stdenv.mkDerivation rec {
|
|
name = "exfat-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1fsm082g8phqcdg5md6yll06jijnbvqrdy0638psa8kr159h4dv8";
|
|
rev = "v${version}";
|
|
repo = "exfat";
|
|
owner = "relan";
|
|
};
|
|
|
|
buildInputs = [ fuse ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit version;
|
|
inherit (src.meta) homepage;
|
|
description = "Free exFAT file system implementation";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|
|
|