procodile: init at 1.0.17

This commit is contained in:
Tom Macdonald 2017-11-07 16:45:41 +01:00
parent 0f8c85d5d0
commit 7b8e40c6b1
6 changed files with 61 additions and 0 deletions

View file

@ -518,6 +518,7 @@
rardiol = "Ricardo Ardissone <ricardo.ardissone@gmail.com>";
rasendubi = "Alexey Shmalko <rasen.dubi@gmail.com>";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
ravloony = "Tom Macdonald <ravloony@gmail.com>";
rbasso = "Rafael Basso <rbasso@sharpgeeks.net>";
redbaron = "Maxim Ivanov <ivanov.maxim@gmail.com>";
redvers = "Redvers Davies <red@infect.me>";

View file

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'procodile'

View file

@ -0,0 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
json (2.1.0)
procodile (1.0.17)
json
PLATFORMS
ruby
DEPENDENCIES
procodile
BUNDLED WITH
1.14.6

View file

@ -0,0 +1,22 @@
{ lib, bundlerEnv, ruby, stdenv }:
bundlerEnv rec {
name = "procodile-${version}";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
version = (import gemset).procodile.version;
inherit ruby;
gemdir = ./.;
meta = with lib; {
description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)";
homepage = https://adam.ac/procodile;
license = with licenses; mit;
maintainers = [ maintainers.ravloony ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,19 @@
{
json = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
type = "gem";
};
version = "2.1.0";
};
procodile = {
dependencies = ["json"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1gfms2h4k9zqq7jn04nphibcsjykgxiqwdyyz2r4kq428a25kqsf";
type = "gem";
};
version = "1.0.17";
};
}

View file

@ -7484,6 +7484,8 @@ with pkgs;
premake = premake4;
procodile = callPackage ../tools/system/procodile { };
qtcreator = libsForQt5.callPackage ../development/qtcreator { };
r10k = callPackage ../tools/system/r10k { };