Commit 8529bb5b authored by Ross Smyth's avatar Ross Smyth
Browse files

zuo: 1.9 -> 1.12

parent cc306791
Loading
Loading
Loading
Loading
+21 −9
Original line number Diff line number Diff line
@@ -2,27 +2,39 @@
  lib,
  stdenv,
  fetchFromGitHub,
  autoreconfHook,
  buildPackages,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "zuo";
  version = "1.9";
  version = "1.12";

  src = fetchFromGitHub {
    owner = "racket";
    repo = "zuo";
    rev = "v${version}";
    hash = "sha256-F7ba/4VVVhNDK/wqk+kgJKYxETS2pR9ZiDh0O0aOWn0=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-BUJtAKB2tz04LhkCsDWBjgTTymU4U3Zcdm+RDYawfxQ=";
  };

  strictDeps = true;
  enableParallelBuilding = true;
  depsBuildBuild = [ buildPackages.stdenv.cc ];
  nativeBuildInputs = [ autoreconfHook ];

  configureFlags = [
    "CC_FOR_BUILD=cc"
  ];

  doCheck = true;
  enableParallelChecking = true;

  meta = with lib; {
  meta = {
    description = "Tiny Racket for Scripting";
    mainProgram = "zuo";
    homepage = "https://github.com/racket/zuo";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = [ ];
    license = lib.licenses.mit;
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.RossSmyth ];
  };
}
})