b3ebab2c53
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pony-stable/versions.
28 lines
675 B
Nix
28 lines
675 B
Nix
{stdenv, fetchFromGitHub, ponyc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pony-stable-${version}";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ponylang";
|
|
repo = "pony-stable";
|
|
rev = version;
|
|
sha256 = "02lqba75psnxcxj2y8lm1fy1hmwa088nvxjghhpnlkqbwz7wa2sw";
|
|
};
|
|
|
|
buildInputs = [ ponyc ];
|
|
|
|
installPhase = ''
|
|
make prefix=$out install
|
|
'';
|
|
|
|
meta = {
|
|
description = "A simple dependency manager for the Pony language.";
|
|
homepage = https://www.ponylang.org;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers; [ dipinhora kamilchm patternspandemic ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|