nixpkgs/pkgs/development/compilers/mint/default.nix

65 lines
1.8 KiB
Nix
Raw Normal View History

2018-08-27 22:24:13 +00:00
# Updating the dependencies for this package:
#
2018-10-01 15:33:59 +00:00
# wget https://raw.githubusercontent.com/mint-lang/mint/0.3.1/shard.lock
2018-08-27 22:24:13 +00:00
# nix-shell -p crystal libyaml --run 'crystal run crystal2nix.cr'
#
2018-10-01 15:33:59 +00:00
{stdenv, lib, fetchFromGitHub, crystal, zlib, openssl, duktape, which, libyaml }:
2018-05-27 19:13:22 +00:00
let
crystalPackages = lib.mapAttrs (name: src:
stdenv.mkDerivation {
name = lib.replaceStrings ["/"] ["-"] name;
2018-05-30 15:54:56 +00:00
src = fetchFromGitHub src;
2018-05-27 19:13:22 +00:00
phases = "installPhase";
installPhase = ''cp -r $src $out'';
passthru = { libName = name; };
}
) (import ./shards.nix);
crystalLib = stdenv.mkDerivation {
name = "crystal-lib";
src = lib.attrValues crystalPackages;
libNames = lib.mapAttrsToList (k: v: [k v]) crystalPackages;
phases = "buildPhase";
buildPhase = ''
mkdir -p $out
linkup () {
while [ "$#" -gt 0 ]; do
ln -s $2 $out/$1
shift; shift
done
}
linkup $libNames
'';
};
in
stdenv.mkDerivation rec {
2018-10-01 15:33:59 +00:00
version = "0.3.1";
2018-05-27 19:13:22 +00:00
name = "mint-${version}";
2018-05-30 15:54:56 +00:00
src = fetchFromGitHub {
owner = "mint-lang";
repo = "mint";
2018-08-27 22:24:13 +00:00
rev = version;
2018-10-01 15:33:59 +00:00
sha256 = "1f49ax045zdjj0ypc2j4ms9gx80rl63qcsfzm3r0k0lcavfp57zr";
2018-05-27 19:13:22 +00:00
};
2018-10-01 15:33:59 +00:00
nativeBuildInputs = [ which crystal zlib openssl duktape libyaml ];
2018-05-27 19:13:22 +00:00
buildPhase = ''
2018-07-06 09:32:08 +00:00
mkdir -p $out/bin tmp
2018-05-27 19:13:22 +00:00
cd tmp
ln -s ${crystalLib} lib
cp -r $src/* .
crystal build src/mint.cr -o $out/bin/mint --verbose --progress --release --no-debug
'';
installPhase = ''true'';
meta = {
2018-05-30 15:54:56 +00:00
description = "A refreshing language for the front-end web";
2018-05-27 19:13:22 +00:00
homepage = https://mint-lang.com/;
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ manveru ];
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
};
}