Skip to content

Commit

Permalink
Merge pull request #56433 from nyarly/add_cadre
Browse files Browse the repository at this point in the history
cadre: init at 1.0.4
  • Loading branch information
joachifm committed Mar 25, 2019
2 parents c8fd38a + 91baf80 commit 7c9e225
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/tools/cadre/Gemfile
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gem 'cadre', '=1.0.4'
19 changes: 19 additions & 0 deletions pkgs/development/tools/cadre/Gemfile.lock
@@ -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 changes: 15 additions & 0 deletions pkgs/development/tools/cadre/default.nix
@@ -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 changes: 35 additions & 0 deletions pkgs/development/tools/cadre/gemset.nix
@@ -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";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -8539,6 +8539,8 @@ in

byacc = callPackage ../development/tools/parsing/byacc { };

cadre = callPackage ../development/tools/cadre { };

casperjs = callPackage ../development/tools/casperjs {
inherit (texFunctions) fontsConf;
};
Expand Down

0 comments on commit 7c9e225

Please sign in to comment.