Skip to content

Commit

Permalink
bcat: init at 0.6.2 (#31813)
Browse files Browse the repository at this point in the history
  • Loading branch information
jraygauthier authored and Mic92 committed Nov 19, 2017
1 parent a4d7b6a commit cfd3e8f
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/tools/text/bcat/Gemfile
@@ -0,0 +1,2 @@
source 'http://rubygems.org'
gem 'bcat'
15 changes: 15 additions & 0 deletions pkgs/tools/text/bcat/Gemfile.lock
@@ -0,0 +1,15 @@
GEM
remote: http://rubygems.org/
specs:
bcat (0.6.2)
rack (~> 1.0)
rack (1.6.8)

PLATFORMS
ruby

DEPENDENCIES
bcat

BUNDLED WITH
1.15.4
15 changes: 15 additions & 0 deletions pkgs/tools/text/bcat/default.nix
@@ -0,0 +1,15 @@
{ lib, bundlerApp }:

bundlerApp {
pname = "bcat";
gemdir = ./.;
exes = [ "bcat" "btee" "a2h" ];

meta = with lib; {
description = "Pipe to browser utility";
homepage = http://rtomayko.github.com/bcat/;
license = licenses.mit;
maintainers = [ maintainers.jraygauthier ];
platforms = platforms.unix;
};
}
19 changes: 19 additions & 0 deletions pkgs/tools/text/bcat/gemset.nix
@@ -0,0 +1,19 @@
{
bcat = {
dependencies = ["rack"];
source = {
remotes = ["http://rubygems.org"];
sha256 = "0w2wwlngcs7f4lmvifixrb89bjkw2lx8z0nn72w360hz394ic651";
type = "gem";
};
version = "0.6.2";
};
rack = {
source = {
remotes = ["http://rubygems.org"];
sha256 = "19m7aixb2ri7p1n0iqaqx8ldi97xdhvbxijbyrrcdcl6fv5prqza";
type = "gem";
};
version = "1.6.8";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -709,6 +709,8 @@ with pkgs;

bdf2psf = callPackage ../tools/misc/bdf2psf { };

bcat = callPackage ../tools/text/bcat {};

bcache-tools = callPackage ../tools/filesystems/bcache-tools { };

bchunk = callPackage ../tools/cd-dvd/bchunk { };
Expand Down

0 comments on commit cfd3e8f

Please sign in to comment.