Skip to content

Commit cfd3e8f

Browse files
jraygauthierMic92
authored andcommittedNov 19, 2017
bcat: init at 0.6.2 (#31813)
1 parent a4d7b6a commit cfd3e8f

File tree

5 files changed

+53
-0
lines changed

5 files changed

+53
-0
lines changed
 

Diff for: ‎pkgs/tools/text/bcat/Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'http://rubygems.org'
2+
gem 'bcat'

Diff for: ‎pkgs/tools/text/bcat/Gemfile.lock

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
bcat (0.6.2)
5+
rack (~> 1.0)
6+
rack (1.6.8)
7+
8+
PLATFORMS
9+
ruby
10+
11+
DEPENDENCIES
12+
bcat
13+
14+
BUNDLED WITH
15+
1.15.4

Diff for: ‎pkgs/tools/text/bcat/default.nix

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{ lib, bundlerApp }:
2+
3+
bundlerApp {
4+
pname = "bcat";
5+
gemdir = ./.;
6+
exes = [ "bcat" "btee" "a2h" ];
7+
8+
meta = with lib; {
9+
description = "Pipe to browser utility";
10+
homepage = http://rtomayko.github.com/bcat/;
11+
license = licenses.mit;
12+
maintainers = [ maintainers.jraygauthier ];
13+
platforms = platforms.unix;
14+
};
15+
}

Diff for: ‎pkgs/tools/text/bcat/gemset.nix

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
bcat = {
3+
dependencies = ["rack"];
4+
source = {
5+
remotes = ["http://rubygems.org"];
6+
sha256 = "0w2wwlngcs7f4lmvifixrb89bjkw2lx8z0nn72w360hz394ic651";
7+
type = "gem";
8+
};
9+
version = "0.6.2";
10+
};
11+
rack = {
12+
source = {
13+
remotes = ["http://rubygems.org"];
14+
sha256 = "19m7aixb2ri7p1n0iqaqx8ldi97xdhvbxijbyrrcdcl6fv5prqza";
15+
type = "gem";
16+
};
17+
version = "1.6.8";
18+
};
19+
}

Diff for: ‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,8 @@ with pkgs;
709709

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

712+
bcat = callPackage ../tools/text/bcat {};
713+
712714
bcache-tools = callPackage ../tools/filesystems/bcache-tools { };
713715

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

0 commit comments

Comments
 (0)
Please sign in to comment.