nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 28 lines 881 B view raw
1{ 2 lib, 3 mkTclDerivation, 4 fetchzip, 5}: 6 7mkTclDerivation { 8 pname = "tclvfs"; 9 version = "1.4-unstable-2023-11-23"; 10 11 src = fetchzip { 12 url = "https://core.tcl-lang.org/tclvfs/tarball/8cdab08997fe82d8/tclvfs-8cdab08997fe82d8.tar.gz"; 13 hash = "sha256-DzZ4Puwscbr0KarMyEKeah7jDJy7cfKNBbBSh0boaUw="; 14 }; 15 16 meta = { 17 description = "Tcl extension that exposes Tcl's Virtual File System (VFS) subsystem to the script level"; 18 homepage = "https://core.tcl.tk/tclvfs"; 19 license = lib.licenses.tcltk; 20 longDescription = '' 21 The TclVfs project aims to provide an extension to the Tcl language which 22 allows Virtual Filesystems to be built using Tcl scripts only. It is also 23 a repository of such Tcl-implemented filesystems (metakit, zip, ftp, tar, 24 http, webdav, namespace, url) 25 ''; 26 maintainers = with lib.maintainers; [ fgaz ]; 27 }; 28}