mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
bdb83d6589
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
26 lines
647 B
Nix
26 lines
647 B
Nix
{ lib, stdenv, fetchFromGitHub, ponyc }:
|
|
|
|
stdenv.mkDerivation ( rec {
|
|
pname = "corral";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ponylang";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1g4dkf5hsnykn3x6yx6ycjzmzzr1nwl59lj13j7zyka1ibv53hwf";
|
|
};
|
|
|
|
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";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ redvers ];
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
})
|