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

28 lines
823 B
Nix
Raw Normal View History

2019-08-26 16:24:45 +00:00
{ lib, fetchFromGitHub, crystal, zlib, openssl_1_0_2, duktape, which, libyaml }:
crystal.buildCrystalPackage rec {
2019-04-29 08:58:51 +00:00
version = "0.5.0";
2019-08-26 16:24:45 +00:00
pname = "mint";
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;
2019-04-29 08:58:51 +00:00
sha256 = "0vxbx38c390rd2ysvbwgh89v2232sh5rbsp3nk9wzb70jybpslvl";
2018-05-27 19:13:22 +00:00
};
2019-08-26 16:24:45 +00:00
buildInputs = [ openssl_1_0_2 ];
2018-05-27 19:13:22 +00:00
2019-08-26 16:24:45 +00:00
# Update with
# nix-shell -p crystal2nix --run crystal2nix
# with mint's shard.lock file in the current directory
shardsFile = ./shards.nix;
crystalBinaries.mint.src = "src/mint.cr";
2018-05-27 19:13:22 +00:00
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/;
2019-08-26 16:24:45 +00:00
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ manveru ];
2018-05-27 19:13:22 +00:00
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
};
}