lol
0
fork

Configure Feed

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

at 16.09-beta 24 lines 625 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }: 2 3stdenv.mkDerivation rec { 4 name = "exfat-${version}"; 5 version = "1.2.4"; 6 7 src = fetchFromGitHub { 8 sha256 = "0x8wjvvlqmp0g2361m6d24csi1p4df8za2cqhyys03s1hv1qmy0k"; 9 rev = "v${version}"; 10 repo = "exfat"; 11 owner = "relan"; 12 }; 13 14 buildInputs = [ fuse ]; 15 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 16 17 meta = with stdenv.lib; { 18 inherit (src.meta) homepage; 19 description = "Free exFAT file system implementation"; 20 platforms = platforms.linux; 21 license = licenses.gpl2Plus; 22 maintainers = with maintainers; [ nckx ]; 23 }; 24}