Skip to content

Commit

Permalink
manticore: fix build, remove builder.sh (see #23253)
Browse files Browse the repository at this point in the history
(cherry picked from commit 55d21ca)
  • Loading branch information
WilliButz authored and dezgeg committed Mar 25, 2017
1 parent 338afb9 commit 3a0a58c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 31 deletions.
24 changes: 0 additions & 24 deletions pkgs/development/compilers/manticore/builder.sh

This file was deleted.

29 changes: 22 additions & 7 deletions pkgs/development/compilers/manticore/default.nix
@@ -1,14 +1,29 @@
{ stdenv, fetchurl, coreutils, autoconf, automake, smlnj }:
{ stdenv, fetchFromGitHub, coreutils, autoreconfHook, smlnj }:

stdenv.mkDerivation rec {
let
rev = "592a5714595b4448b646a7d49df04c285668c2f8";
in stdenv.mkDerivation rec {
name = "manticore-${version}";
version = "2014.08.18";
builder = ./builder.sh;
src = fetchurl {
url = https://github.com/rrnewton/manticore_temp_mirror/archive/snapshot-20140818.tar.gz;
sha256 = "1x52xpj5gbcpqjqm6aw6ssn901f353zypj3d5scm8i3ad777y29d";

src = fetchFromGitHub {
owner = "rrnewton";
repo = "manticore_temp_mirror";
sha256 = "1snwlm9a31wfgvzb80y7r7yvc6n0k0bi675lqwzll95as7cdswwi";
inherit rev;
};
inherit stdenv coreutils autoconf automake smlnj;

enableParallelBuilding = false;

nativeBuildInputs = [ autoreconfHook ];

buildInputs = [ coreutils smlnj ];

autoreconfFlags = "-Iconfig -vfi";

postPatch = "patchShebangs .";

preInstall = "mkdir -p $out/bin";

meta = {
description = "A parallel, pure variant of Standard ML";
Expand Down

0 comments on commit 3a0a58c

Please sign in to comment.