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

28 lines
658 B
Nix
Raw Normal View History

2016-10-10 18:41:49 +00:00
{stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation rec {
name = "pony-stable-${version}";
version = "0.0.1";
2016-10-10 18:41:49 +00:00
src = fetchFromGitHub {
2017-07-10 08:34:33 +00:00
owner = "ponylang";
2016-10-10 18:41:49 +00:00
repo = "pony-stable";
rev = version;
sha256 = "0q05135mnzzdwam7cnmxq34clqhmc83yp2gi63sx20c74rcw3p6v";
2016-10-10 18:41:49 +00: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 18:41:49 +00:00
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ dipinhora kamilchm ];
2016-10-10 18:41:49 +00:00
platforms = stdenv.lib.platforms.unix;
};
}