nixpkgs/pkgs/development/tools/scry/default.nix

24 lines
619 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, crystal }:
2018-09-21 00:51:37 +00:00
crystal.buildCrystalPackage rec {
pname = "scry";
version = "0.8.1";
2018-09-21 00:51:37 +00:00
src = fetchFromGitHub {
owner = "crystal-lang-tools";
repo = pname;
rev = "v${version}";
sha256 = "0ii4k9l3dgm1c9lllc8ni9dar59lrxik0v9iz7gk3d6v62wwnq79";
2018-09-21 00:51:37 +00:00
};
shardsFile = ./shards.nix;
crystalBinaries.scry.src = "src/scry.cr";
2019-06-25 03:32:56 +00:00
meta = with lib; {
2018-09-21 00:51:37 +00:00
description = "Code analysis server for the Crystal programming language";
homepage = "https://github.com/crystal-lang-tools/scry";
2018-09-21 00:51:37 +00:00
license = licenses.mit;
2019-12-03 16:10:13 +00:00
maintainers = with maintainers; [ peterhoeg filalex77 ];
2018-09-21 00:51:37 +00:00
};
}