nixpkgs/pkgs/tools/filesystems/exfatprogs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
613 B
Nix
Raw Normal View History

2021-06-27 14:49:50 +02:00
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
stdenv.mkDerivation rec {
pname = "exfatprogs";
2022-10-28 20:19:37 +02:00
version = "1.2.0";
2021-06-27 14:49:50 +02:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2022-10-28 20:19:37 +02:00
sha256 = "sha256-8M+016RnwZt0BrRaCTytpl7o+8MJAkS5CG/GvNAJRgk=";
2021-06-27 14:49:50 +02:00
};
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;
};
}