9fb8020e4e
This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place.
25 lines
625 B
Nix
25 lines
625 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "exfat-${version}";
|
|
version = "1.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda";
|
|
rev = "v${version}";
|
|
repo = "exfat";
|
|
owner = "relan";
|
|
};
|
|
|
|
buildInputs = [ fuse ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Free exFAT file system implementation";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|