472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
22 lines
571 B
Nix
22 lines
571 B
Nix
{ stdenv, lib, cmake, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "filesystem";
|
|
version = "1.5.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gulrak";
|
|
repo = "filesystem";
|
|
rev = "v${version}";
|
|
hash = "sha256-XZ0IxyNIAs2tegktOGQevkLPbWHam/AOFT+M6wAWPFg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "header-only single-file C++ std::filesystem compatible helper library";
|
|
homepage = "https://github.com/gulrak/filesystem";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bbjubjub ];
|
|
};
|
|
}
|