lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 24 lines 617 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse }: 2 3stdenv.mkDerivation rec { 4 pname = "exfat"; 5 version = "1.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "relan"; 9 repo = "exfat"; 10 rev = "v${version}"; 11 sha256 = "1q29pcysv747y6dis07953dkax8k9x50b5gg99gpz6rr46xwgkgb"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 buildInputs = [ fuse ]; 16 17 meta = with lib; { 18 description = "Free exFAT file system implementation"; 19 inherit (src.meta) homepage; 20 license = licenses.gpl2Plus; 21 maintainers = with maintainers; [ dywedir ]; 22 platforms = platforms.unix; 23 }; 24}