about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/shards/default.nix
blob: 7f0cc8100ac04cc42de2ef63424cf408fa92026c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, crystal, pcre, libyaml, which }:

stdenv.mkDerivation rec {
  pname = "shards";
  version = "0.9.0";

  src = fetchFromGitHub {
    owner  = "crystal-lang";
    repo   = "shards";
    rev    = "v${version}";
    sha256 = "19q0xww4v0h5ln9gz8d8zv0c9ig761ik7gw8y31yxynzgzihwpf4";
  };

  buildInputs = [ crystal libyaml pcre which ];

  buildFlags = [ "CRFLAGS=--release" ];

  installPhase = ''
    runHook preInstall

    install -Dm755 bin/shards $out/bin/shards

    runHook postInstall
  '';

  meta = with stdenv.lib; {
    description = "Dependency manager for the Crystal language";
    license     = licenses.asl20;
    maintainers = with maintainers; [ peterhoeg ];
    inherit (crystal.meta) homepage platforms;
  };
}