mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
bcat: init at 0.6.2 (#31813)
This commit is contained in:
parent
a4d7b6ad91
commit
cfd3e8f48f
2
pkgs/tools/text/bcat/Gemfile
Normal file
2
pkgs/tools/text/bcat/Gemfile
Normal file
@ -0,0 +1,2 @@
|
||||
source 'http://rubygems.org'
|
||||
gem 'bcat'
|
15
pkgs/tools/text/bcat/Gemfile.lock
Normal file
15
pkgs/tools/text/bcat/Gemfile.lock
Normal 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
|
15
pkgs/tools/text/bcat/default.nix
Normal file
15
pkgs/tools/text/bcat/default.nix
Normal 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;
|
||||
};
|
||||
}
|
19
pkgs/tools/text/bcat/gemset.nix
Normal file
19
pkgs/tools/text/bcat/gemset.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user