bcat: init at 0.6.2 (#31813)

This commit is contained in:
jraygauthier 2017-11-19 10:21:28 -05:00 committed by Jörg Thalheim
parent a4d7b6ad91
commit cfd3e8f48f
5 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,2 @@
source 'http://rubygems.org'
gem 'bcat'

View File

@ -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

View File

@ -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;
};
}

View File

@ -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";
};
}

View File

@ -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 { };