lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 36 lines 799 B view raw
1{ 2 lib, 3 stdenv, 4 cmake, 5 fetchFromGitHub, 6 nix-update-script, 7}: 8 9stdenv.mkDerivation (finalAttrs: { 10 pname = "filesystem"; 11 version = "1.5.14"; 12 13 src = fetchFromGitHub { 14 owner = "gulrak"; 15 repo = "filesystem"; 16 tag = "v${finalAttrs.version}"; 17 hash = "sha256-XZ0IxyNIAs2tegktOGQevkLPbWHam/AOFT+M6wAWPFg="; 18 }; 19 20 nativeBuildInputs = [ cmake ]; 21 22 passthru = { 23 updateScript = nix-update-script { }; 24 }; 25 26 meta = { 27 description = "Header-only single-file C++ std::filesystem compatible helper library"; 28 homepage = "https://github.com/gulrak/filesystem"; 29 changelog = "https://github.com/gulrak/filesystem/releases/tag/v${finalAttrs.version}"; 30 license = lib.licenses.mit; 31 maintainers = with lib.maintainers; [ 32 bbjubjub 33 getchoo 34 ]; 35 }; 36})