mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
29 lines
873 B
Nix
29 lines
873 B
Nix
{
|
|
lib,
|
|
tcl,
|
|
fetchzip,
|
|
}:
|
|
|
|
tcl.mkTclDerivation {
|
|
pname = "tclvfs";
|
|
version = "1.4-unstable-2023-11-23";
|
|
|
|
src = fetchzip {
|
|
url = "https://core.tcl-lang.org/tclvfs/tarball/8cdab08997fe82d8/tclvfs-8cdab08997fe82d8.tar.gz";
|
|
hash = "sha256-DzZ4Puwscbr0KarMyEKeah7jDJy7cfKNBbBSh0boaUw=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Tcl extension that exposes Tcl's Virtual File System (VFS) subsystem to the script level";
|
|
homepage = "https://core.tcl.tk/tclvfs";
|
|
license = lib.licenses.tcltk;
|
|
longDescription = ''
|
|
The TclVfs project aims to provide an extension to the Tcl language which
|
|
allows Virtual Filesystems to be built using Tcl scripts only. It is also
|
|
a repository of such Tcl-implemented filesystems (metakit, zip, ftp, tar,
|
|
http, webdav, namespace, url)
|
|
'';
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
};
|
|
}
|