Add meta information to heroku toolbelt

This commit is contained in:
Alexander Flatter
2015-04-28 17:02:33 +02:00
parent d2b906c771
commit be71c0871c
2 changed files with 10 additions and 0 deletions

View File

@@ -1,9 +1,17 @@
{ stdenv, fetchurl, postgresql, ruby }:
with stdenv.lib;
stdenv.mkDerivation rec {
version = "3.30.3";
name = "heroku-${version}";
meta = {
homepage = "https://toolbelt.heroku.com";
description = "Everything you need to get started using Heroku";
maintainers = with maintainers; [ aflatter mirdhyn ];
license = licenses.mit;
};
src = fetchurl {
url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz";
sha256 = "0m9l04syli4ripkh37lwk0hq4silnp830ddsk3ph77iymzh2iz1f";