nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 mkTclDerivation,
4 fetchzip,
5 autoreconfHook,
6}:
7
8mkTclDerivation {
9 pname = "lexec";
10 version = "0-unstable-2020-03-11";
11
12 src = fetchzip {
13 url = "https://chiselapp.com/user/pooryorick/repository/lexec/tarball/3880618cfe/unnamed-3880618cfe.tar.gz";
14 hash = "sha256-MHsVcCPjdNn1ca6GFP4jWlDk7zioD0VSEh1CImud4fc=";
15 };
16
17 nativeBuildInputs = [
18 autoreconfHook
19 ];
20
21 meta = {
22 description = "Implementation of Tcl TIP 424 \"Improving [exec]\" as a separate package";
23 homepage = "https://chiselapp.com/user/pooryorick/repository/lexec/index";
24 license = lib.licenses.tcltk;
25 maintainers = with lib.maintainers; [ fgaz ];
26 platforms = lib.platforms.all;
27 };
28}