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

44 lines
1.1 KiB
Nix
Raw Normal View History

2020-04-19 09:34:49 +02:00
{ lib, fetchFromGitHub, crystal_0_31, coreutils, shards, makeWrapper, which }:
2018-09-21 02:51:37 +02:00
2020-04-19 09:34:49 +02:00
let crystal = crystal_0_31;
in crystal.buildCrystalPackage rec {
pname = "scry";
version = "0.8.1";
2018-09-21 02:51:37 +02:00
src = fetchFromGitHub {
owner = "crystal-lang-tools";
repo = pname;
rev = "v${version}";
sha256 = "0ii4k9l3dgm1c9lllc8ni9dar59lrxik0v9iz7gk3d6v62wwnq79";
2018-09-21 02:51:37 +02:00
};
2020-04-19 09:34:49 +02:00
# we are already testing for this, so we can ignore the failures
postPatch = ''
rm spec/scry/executable_spec.cr
'';
format = "crystal";
nativeBuildInputs = [ makeWrapper ];
shardsFile = ./shards.nix;
2020-04-19 09:34:49 +02:00
crystalBinaries.scry.src = "src/scry.cr";
2019-06-25 05:32:56 +02:00
2020-04-19 09:34:49 +02: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 02:51:37 +02:00
description = "Code analysis server for the Crystal programming language";
homepage = "https://github.com/crystal-lang-tools/scry";
2018-09-21 02:51:37 +02:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg Br1ght0ne ];
2018-09-21 02:51:37 +02:00
};
}