nixpkgs/pkgs/development/compilers/ponyc/pony-stable.nix
R. RyanTM 771de50389 pony-stable: 0.1.3 -> 0.1.4
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.

These checks were done:

- built on NixOS
- /nix/store/lb8ipik1qmjzhjnj04iv92as8k763cpd-pony-stable-0.1.4/bin/stable passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.1.4 with grep in /nix/store/lb8ipik1qmjzhjnj04iv92as8k763cpd-pony-stable-0.1.4
- directory tree listing: https://gist.github.com/3550bd75a6690902598b047ba7dba1a9
- du listing: https://gist.github.com/3f202ed132af36d390ed59ab7da008a6
2018-06-23 13:11:44 -07:00

28 lines
675 B
Nix

{stdenv, fetchFromGitHub, ponyc }:
stdenv.mkDerivation rec {
name = "pony-stable-${version}";
version = "0.1.4";
src = fetchFromGitHub {
owner = "ponylang";
repo = "pony-stable";
rev = version;
sha256 = "18ncxdk37r9sp2wnrgqj29nvqljqq9m154pkdv8b6b5k9knpradx";
};
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;
};
}