nixpkgs/pkgs/development/compilers/ponyc/pony-stable.nix

28 lines
658 B
Nix
Raw Normal View History

2016-10-10 21:41:49 +03:00
{stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation rec {
name = "pony-stable-${version}";
2017-11-07 22:20:39 +03:00
version = "0.1.1";
2016-10-10 21:41:49 +03:00
src = fetchFromGitHub {
2017-07-10 11:34:33 +03:00
owner = "ponylang";
2016-10-10 21:41:49 +03:00
repo = "pony-stable";
rev = version;
2017-11-07 22:20:39 +03:00
sha256 = "0v4039iijjv93m89s3dsikcbp1y0hml6g1agj44s6w2g4m8kiiw3";
2016-10-10 21:41:49 +03:00
};
buildInputs = [ ponyc ];
installPhase = ''
make prefix=$out install
'';
meta = {
description = "A simple dependency manager for the Pony language.";
homepage = https://www.ponylang.org;
2016-10-10 21:41:49 +03:00
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ dipinhora kamilchm ];
2016-10-10 21:41:49 +03:00
platforms = stdenv.lib.platforms.unix;
};
}