cadre: init at 1.0.4
This commit is contained in:
parent
c9d5546635
commit
91baf80786
3
pkgs/development/tools/cadre/Gemfile
Normal file
3
pkgs/development/tools/cadre/Gemfile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'cadre', '=1.0.4'
|
19
pkgs/development/tools/cadre/Gemfile.lock
Normal file
19
pkgs/development/tools/cadre/Gemfile.lock
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
cadre (1.0.4)
|
||||||
|
thor (>= 0.14, < 1.0)
|
||||||
|
tilt (> 1.0)
|
||||||
|
valise (~> 1.2)
|
||||||
|
thor (0.20.3)
|
||||||
|
tilt (2.0.9)
|
||||||
|
valise (1.2.1)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
cadre (= 1.0.4)
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.16.3
|
15
pkgs/development/tools/cadre/default.nix
Normal file
15
pkgs/development/tools/cadre/default.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ lib, bundlerApp }:
|
||||||
|
|
||||||
|
bundlerApp {
|
||||||
|
pname = "cadre";
|
||||||
|
gemdir = ./.;
|
||||||
|
exes = [ "cadre" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs";
|
||||||
|
homepage = https://github.com/nyarly/cadre;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.nyarly ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
35
pkgs/development/tools/cadre/gemset.nix
Normal file
35
pkgs/development/tools/cadre/gemset.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
cadre = {
|
||||||
|
dependencies = ["thor" "tilt" "valise"];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "07q60s1bm2xar46g00ls5fjkn6dm2kfxhsz9ayblc31x5kr8d83a";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.0.4";
|
||||||
|
};
|
||||||
|
thor = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.20.3";
|
||||||
|
};
|
||||||
|
tilt = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.0.9";
|
||||||
|
};
|
||||||
|
valise = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1arsbmk2gifrhv244qrld7s3202xrnxy6vlc5gqklg70dpsinbn5";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.2.1";
|
||||||
|
};
|
||||||
|
}
|
@ -8446,6 +8446,8 @@ in
|
|||||||
|
|
||||||
byacc = callPackage ../development/tools/parsing/byacc { };
|
byacc = callPackage ../development/tools/parsing/byacc { };
|
||||||
|
|
||||||
|
cadre = callPackage ../development/tools/cadre { };
|
||||||
|
|
||||||
casperjs = callPackage ../development/tools/casperjs {
|
casperjs = callPackage ../development/tools/casperjs {
|
||||||
inherit (texFunctions) fontsConf;
|
inherit (texFunctions) fontsConf;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user