mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
procodile: init at 1.0.17
This commit is contained in:
parent
0f8c85d5d0
commit
7b8e40c6b1
|
@ -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>";
|
||||
|
|
2
pkgs/tools/system/procodile/Gemfile
Normal file
2
pkgs/tools/system/procodile/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source 'https://rubygems.org'
|
||||
gem 'procodile'
|
15
pkgs/tools/system/procodile/Gemfile.lock
Normal file
15
pkgs/tools/system/procodile/Gemfile.lock
Normal 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
|
22
pkgs/tools/system/procodile/default.nix
Normal file
22
pkgs/tools/system/procodile/default.nix
Normal 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;
|
||||
};
|
||||
}
|
19
pkgs/tools/system/procodile/gemset.nix
Normal file
19
pkgs/tools/system/procodile/gemset.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -7484,6 +7484,8 @@ with pkgs;
|
|||
|
||||
premake = premake4;
|
||||
|
||||
procodile = callPackage ../tools/system/procodile { };
|
||||
|
||||
qtcreator = libsForQt5.callPackage ../development/qtcreator { };
|
||||
|
||||
r10k = callPackage ../tools/system/r10k { };
|
||||
|
|
Loading…
Reference in a new issue