mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
24 lines
613 B
Nix
24 lines
613 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exfatprogs";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-8M+016RnwZt0BrRaCTytpl7o+8MJAkS5CG/GvNAJRgk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|