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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, crystal, coreutils, makeWrapper, bash }:
2018-09-21 00:51:37 +00:00
crystal.buildCrystalPackage rec {
pname = "scry";
2021-03-30 08:38:10 +00:00
version = "0.9.1";
2018-09-21 00:51:37 +00:00
src = fetchFromGitHub {
owner = "crystal-lang-tools";
repo = pname;
2021-03-30 08:38:10 +00:00
rev = "v${version}";
sha256 = "sha256-hqyG1aKY3M8q8lZEKzpUUKl9jS7NF+VMsma6+C0sCbg=";
2018-09-21 00:51:37 +00:00
};
2021-03-30 08:38:10 +00:00
# a bunch of tests fail when built in the sandbox while perfectly fine outside
2020-04-19 07:34:49 +00:00
postPatch = ''
2021-03-30 08:38:10 +00:00
rm spec/scry/{client,completion_provider,context,executable}_spec.cr
2020-04-19 07:34:49 +00:00
'';
format = "shards";
2020-04-19 07:34:49 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ bash ];
2020-04-19 07:34:49 +00:00
shardsFile = ./shards.nix;
2020-04-19 07:34:49 +00: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 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;
maintainers = with maintainers; [ peterhoeg Br1ght0ne ];
2018-09-21 00:51:37 +00:00
};
}