fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
23 lines
613 B
Nix
23 lines
613 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exfatprogs";
|
|
version = "1.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-v/SN2RAX+RjNReYkbXYy5Lm/NgIeDeLnAVx5cWo01tM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook file ];
|
|
|
|
meta = with lib; {
|
|
description = "exFAT filesystem userspace utilities";
|
|
homepage = "https://github.com/exfatprogs/exfatprogs";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ zane ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|