uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
2
pkgs/applications/misc/doing/Gemfile
Normal file
2
pkgs/applications/misc/doing/Gemfile
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
source 'https://rubygems.org'
|
||||
gem 'doing', '1.0.10pre'
|
||||
25
pkgs/applications/misc/doing/Gemfile.lock
Normal file
25
pkgs/applications/misc/doing/Gemfile.lock
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
chronic (0.10.2)
|
||||
deep_merge (1.2.1)
|
||||
doing (1.0.10pre)
|
||||
chronic (~> 0.10, >= 0.10.2)
|
||||
deep_merge
|
||||
gli (~> 2.17.1)
|
||||
haml (= 4.0.3)
|
||||
json (~> 1.8.1)
|
||||
gli (2.17.1)
|
||||
haml (4.0.3)
|
||||
tilt
|
||||
json (1.8.6)
|
||||
tilt (2.0.8)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
doing (= 1.0.10pre)
|
||||
|
||||
BUNDLED WITH
|
||||
2.1.4
|
||||
25
pkgs/applications/misc/doing/default.nix
Normal file
25
pkgs/applications/misc/doing/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, bundlerEnv, ruby, bundlerUpdateScript
|
||||
}:
|
||||
|
||||
bundlerEnv {
|
||||
pname = "doing";
|
||||
version = (import ./gemset.nix).doing.version;
|
||||
|
||||
inherit ruby;
|
||||
gemdir = ./.;
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "doing";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done";
|
||||
longDescription = ''
|
||||
doing is a basic CLI for adding and listing "what was I doing" reminders
|
||||
in a TaskPaper-formatted text file. It allows for multiple
|
||||
sections/categories and flexible output formatting.
|
||||
'';
|
||||
homepage = "https://brettterpstra.com/projects/doing/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ktf nicknovitski ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
60
pkgs/applications/misc/doing/gemset.nix
Normal file
60
pkgs/applications/misc/doing/gemset.nix
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
chronic = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
|
||||
type = "gem";
|
||||
};
|
||||
version = "0.10.2";
|
||||
};
|
||||
deep_merge = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1q3picw7zx1xdkybmrnhmk2hycxzaa0jv4gqrby1s90dy5n7fmsb";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.2.1";
|
||||
};
|
||||
doing = {
|
||||
dependencies = ["chronic" "deep_merge" "gli" "haml" "json"];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1y42yc7h45sz9hqj3g1dd77ipx58l7v64i7mrsj3is2f5rszd1rv";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.0.10pre";
|
||||
};
|
||||
gli = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0g7g3lxhh2b4h4im58zywj9vcfixfgndfsvp84cr3x67b5zm4kaq";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.17.1";
|
||||
};
|
||||
haml = {
|
||||
dependencies = ["tilt"];
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1l9zhfdk9z7xjfdp108r9fw4xa55hflin7hh3lpafbf9bdz96knr";
|
||||
type = "gem";
|
||||
};
|
||||
version = "4.0.3";
|
||||
};
|
||||
json = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0qmj7fypgb9vag723w1a49qihxrcf5shzars106ynw2zk352gbv5";
|
||||
type = "gem";
|
||||
};
|
||||
version = "1.8.6";
|
||||
};
|
||||
tilt = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.0.8";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue