mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
24 lines
590 B
Nix
24 lines
590 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, file }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "exfatprogs";
|
|
version = "1.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-VUvVPABgQ7EUQu90DbWU7a+YThrWhusTk/YreKSqU/M=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|