Skip to content

Commit

Permalink
tclPackages.lexec: init at 0-unstable-2020-03-11 (#353474)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Jan 13, 2025
2 parents fa453d5 + baecae5 commit 71a5498
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/tcl-modules/by-name/le/lexec/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
mkTclDerivation,
fetchzip,
autoreconfHook,
}:

mkTclDerivation rec {
pname = "lexec";
version = "0-unstable-2020-03-11";

src = fetchzip {
url = "https://chiselapp.com/user/pooryorick/repository/lexec/tarball/3880618cfe/unnamed-3880618cfe.tar.gz";
hash = "sha256-MHsVcCPjdNn1ca6GFP4jWlDk7zioD0VSEh1CImud4fc=";
};

nativeBuildInputs = [
autoreconfHook
];

meta = {
description = "Implementation of Tcl TIP 424 \"Improving [exec]\" as a separate package";
homepage = "https://chiselapp.com/user/pooryorick/repository/lexec/index";
license = lib.licenses.tcltk;
maintainers = with lib.maintainers; [ fgaz ];
platforms = lib.platforms.all;
};
}

0 comments on commit 71a5498

Please sign in to comment.