procodile: init at 1.0.17
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
source 'https://rubygems.org'
|
||||
gem 'procodile'
|
||||
@@ -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
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user