scry: 0.8.0 -> 0.8.1

- Use `crystal.buildCrystalPackage`
- Add `shards.nix`
- Reformat a bit
This commit is contained in:
Oleksii Filonenko 2019-12-03 17:38:58 +02:00
parent 9974c07915
commit 9052debc9b
No known key found for this signature in database
GPG Key ID: F3510FE5691629A1
2 changed files with 19 additions and 39 deletions

View File

@ -1,50 +1,22 @@
{ stdenv, lib, fetchFromGitHub, crystal, shards, llvm, which }: { lib, fetchFromGitHub, crystal }:
stdenv.mkDerivation { crystal.buildCrystalPackage rec {
pname = "scry"; pname = "scry";
version = "0.8.0"; version = "0.8.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "crystal-lang-tools"; owner = "crystal-lang-tools";
repo = "scry"; repo = pname;
rev = "543c1c3f764298f9fff192ca884d10f72338607d"; rev = "v${version}";
sha256 = "1yq7jap3y5pr2yqc6fn6bxshzwv7dz3w97incq7wpcvi7ibb4lcn"; sha256 = "0ii4k9l3dgm1c9lllc8ni9dar59lrxik0v9iz7gk3d6v62wwnq79";
}; };
patches = lib.optional (lib.versionAtLeast crystal.version "0.28") ./fix_for_crystal_0_28_and_above.patch; shardsFile = ./shards.nix;
crystalBinaries.scry.src = "src/scry.cr";
nativeBuildInputs = [ crystal shards llvm which ]; meta = with lib; {
buildPhase = ''
runHook preBuild
shards build --release
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -Dm755 -t $out/bin bin/scry
runHook postInstall
'';
# https://github.com/crystal-lang-tools/scry/issues/138
doCheck = false;
checkPhase = ''
runHook preCheck
crystal spec
runHook postCheck
'';
meta = with stdenv.lib; {
description = "Code analysis server for the Crystal programming language"; description = "Code analysis server for the Crystal programming language";
homepage = https://github.com/crystal-lang-tools/scry; homepage = "https://github.com/crystal-lang-tools/scry";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
}; };

View File

@ -0,0 +1,8 @@
{
lsp = {
owner = "crystal-lang-tools";
repo = "lsp";
rev = "v0.1.0";
sha256 = "1sgsdgm2dmkp92a2lbaf2pgf80gljdlqzp9xkqvwz0rr92la6810";
};
}