about summary refs log tree commit diff
path: root/pkgs/development/compilers/ponyc/pony-corral.nix
blob: a399737334749df45bcea36e934ce144d9cbb629 (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
{ lib
, stdenv
, fetchFromGitHub
, ponyc
}:

stdenv.mkDerivation ( rec {
  pname = "corral";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "ponylang";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-Rv1K6kFRylWodm1uACBs8KqqEqQZh86NqAG50heNteE=";
  };

  buildInputs = [ ponyc ];

  installFlags = [ "prefix=${placeholder "out"}" "install" ];

  meta = with lib; {
    description = "Corral is a dependency management tool for ponylang (ponyc)";
    homepage = "https://www.ponylang.io";
    changelog = "https://github.com/ponylang/corral/blob/${version}/CHANGELOG.md";
    license = licenses.bsd2;
    maintainers = with maintainers; [ redvers ];
    platforms = [ "x86_64-linux" "x86_64-darwin" ];
  };
})