Commit 4319e1ce authored by Vincenzo Mantova's avatar Vincenzo Mantova
Browse files

noweb: create pkgs fixpoint for texlive using mkDerivation

parent 2f7daea6
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, nawk, groff, icon-lang, useIcon ? true }:

lib.fix (noweb: stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: rec {
  pname = "noweb";
  version = "2.12";

@@ -70,8 +70,10 @@ lib.fix (noweb: stdenv.mkDerivation rec {

  outputs = [ "out" "tex" ];

  passthru = {
    tlType = "run";
  passthru.pkgs = [ noweb.tex ];
    pkgs = [ finalAttrs.finalPackage.tex ];
  };

  meta = with lib; {
    description = "A simple, extensible literate-programming tool";