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

40 lines
1.0 KiB
Nix
Raw Normal View History

2021-03-30 11:38:10 +03:00
{ lib, fetchFromGitHub, crystal, coreutils, makeWrapper }:
2018-09-21 03:51:37 +03:00
crystal.buildCrystalPackage rec {
pname = "scry";
2021-03-30 11:38:10 +03:00
version = "0.9.1";
2018-09-21 03:51:37 +03:00
src = fetchFromGitHub {
owner = "crystal-lang-tools";
repo = pname;
2021-03-30 11:38:10 +03:00
rev = "v${version}";
sha256 = "sha256-hqyG1aKY3M8q8lZEKzpUUKl9jS7NF+VMsma6+C0sCbg=";
2018-09-21 03:51:37 +03:00
};
2021-03-30 11:38:10 +03:00
# a bunch of tests fail when built in the sandbox while perfectly fine outside
2020-04-19 10:34:49 +03:00
postPatch = ''
2021-03-30 11:38:10 +03:00
rm spec/scry/{client,completion_provider,context,executable}_spec.cr
2020-04-19 10:34:49 +03:00
'';
format = "shards";
2020-04-19 10:34:49 +03:00
nativeBuildInputs = [ makeWrapper ];
shardsFile = ./shards.nix;
2020-04-19 10:34:49 +03:00
postFixup = ''
wrapProgram $out/bin/scry \
--prefix PATH : ${lib.makeBinPath [ crystal coreutils ]}
'';
# the binary doesn't take any arguments, so this will hang
doInstallCheck = false;
meta = with lib; {
2018-09-21 03:51:37 +03:00
description = "Code analysis server for the Crystal programming language";
homepage = "https://github.com/crystal-lang-tools/scry";
2018-09-21 03:51:37 +03:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg Br1ght0ne ];
2018-09-21 03:51:37 +03:00
};
}