5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
23 lines
590 B
Nix
23 lines
590 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exfatprogs";
|
|
version = "1.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-SrkRPDyASXpUAKapwcfaJSlUJBcVNtYZltdPzuhpvYM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook file ];
|
|
|
|
meta = with lib; {
|
|
description = "exFAT filesystem userspace utilities";
|
|
homepage = "https://github.com/exfatprogs/exfatprogs";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|