about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/shards/default.nix
blob: 02d5adb0c34da0e2323319674637022d127ea626 (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 {
  name = "shards-${version}";
  version = "0.8.1";

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

  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;
  };
}