Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
mint: 0.2.1 -> 0.3.1 (#47586)
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru authored and xeji committed Oct 1, 2018
1 parent 74ae8fb commit c4ff366
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions pkgs/development/compilers/mint/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Updating the dependencies for this package:
#
# wget https://github.com/mint-lang/mint/blob/0.2.1/shard.lock
# wget https://raw.githubusercontent.com/mint-lang/mint/0.3.1/shard.lock
# nix-shell -p crystal libyaml --run 'crystal run crystal2nix.cr'
#
{stdenv, lib, fetchFromGitHub, crystal, zlib, openssl, duktape, which }:
{stdenv, lib, fetchFromGitHub, crystal, zlib, openssl, duktape, which, libyaml }:
let
crystalPackages = lib.mapAttrs (name: src:
stdenv.mkDerivation {
Expand Down Expand Up @@ -33,17 +33,16 @@ let
};
in
stdenv.mkDerivation rec {
version = "0.2.1";
version = "0.3.1";
name = "mint-${version}";
src = fetchFromGitHub {
owner = "mint-lang";
repo = "mint";
rev = version;
sha256 = "0r8hv2j5yz0rlvrbpnybihj44562pkmsssa8f0hjs45m1ifvf4b1";
sha256 = "1f49ax045zdjj0ypc2j4ms9gx80rl63qcsfzm3r0k0lcavfp57zr";
};

nativeBuildInputs = [ which ];
buildInputs = [ crystal zlib openssl duktape ];
nativeBuildInputs = [ which crystal zlib openssl duktape libyaml ];

buildPhase = ''
mkdir -p $out/bin tmp
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/compilers/mint/shards.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
ameba = {
owner = "veelenga";
repo = "ameba";
rev = "v0.7.0";
sha256 = "01h0a1ba5l254r04mgkqhjdfn21cs0q7fmvk4gj35cj5lpr2bp17";
rev = "v0.8.0";
sha256 = "0i9vc5xy05kzxgjid2rnvc7ksvxm9gba25qqi6939q2m1s07qjka";
};
baked_file_system = {
owner = "schovi";
Expand Down

0 comments on commit c4ff366

Please sign in to comment.