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

27 lines
661 B
Nix
Raw Normal View History

2016-10-10 21:41:49 +03:00
{stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation {
name = "pony-stable-unstable-2017-07-26";
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 = "4016f9253a4e3114ee69100d3d02154ffd3fd7e4";
sha256 = "0xz5syjn2f8k31vny49k3jm8zisa15ly4hbcb3rh4jvq8jjp1ldr";
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 = http://www.ponylang.org;
license = stdenv.lib.licenses.bsd2;
maintainers = [ stdenv.lib.maintainers.dipinhora ];
platforms = stdenv.lib.platforms.unix;
};
}