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 13:49:50 +01:00
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
stdenv.mkDerivation rec {
pname = "exfatprogs";
2021-12-06 18:40:55 +00:00
version = "1.1.3";
2021-06-27 13:49:50 +01:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2021-12-06 18:40:55 +00:00
sha256 = "sha256-idP3wEGGJcSH4DDFLj1XPRKcLkFEsvtv0ytK89bmj5I=";
2021-06-27 13:49:50 +01: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;
};
}