doing: init at 1.0.10pre (#44034)

authored by Giulio Eulisse and committed by xeji ca7b17a4 de880be9

+113
+2
pkgs/applications/misc/doing/Gemfile
··· 1 + source 'https://rubygems.org' 2 + gem 'doing', '1.0.10pre'
+25
pkgs/applications/misc/doing/Gemfile.lock
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + chronic (0.10.2) 5 + deep_merge (1.2.1) 6 + doing (1.0.10pre) 7 + chronic (~> 0.10, >= 0.10.2) 8 + deep_merge 9 + gli (~> 2.17.1) 10 + haml (= 4.0.3) 11 + json (~> 1.8.1) 12 + gli (2.17.1) 13 + haml (4.0.3) 14 + tilt 15 + json (1.8.6) 16 + tilt (2.0.8) 17 + 18 + PLATFORMS 19 + ruby 20 + 21 + DEPENDENCIES 22 + doing (= 1.0.10pre) 23 + 24 + BUNDLED WITH 25 + 1.14.6
+25
pkgs/applications/misc/doing/default.nix
··· 1 + { lib, bundlerEnv, ruby 2 + }: 3 + 4 + # Bundix: 5 + # nix-shell -p bundix zlib 6 + bundlerEnv rec { 7 + pname = "doing"; 8 + version = (import ./gemset.nix).doing.version; 9 + 10 + inherit ruby; 11 + gemdir = ./.; 12 + 13 + meta = with lib; { 14 + description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done."; 15 + longDescription = '' 16 + doing is a basic CLI for adding and listing "what was I doing" reminders 17 + in a TaskPaper-formatted text file. It allows for multiple 18 + sections/categories and flexible output formatting. 19 + ''; 20 + homepage = http://brettterpstra.com/projects/doing/; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ ktf ]; 23 + platforms = platforms.unix; 24 + }; 25 + }
+60
pkgs/applications/misc/doing/gemset.nix
··· 1 + { 2 + chronic = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn"; 6 + type = "gem"; 7 + }; 8 + version = "0.10.2"; 9 + }; 10 + deep_merge = { 11 + source = { 12 + remotes = ["https://rubygems.org"]; 13 + sha256 = "1q3picw7zx1xdkybmrnhmk2hycxzaa0jv4gqrby1s90dy5n7fmsb"; 14 + type = "gem"; 15 + }; 16 + version = "1.2.1"; 17 + }; 18 + doing = { 19 + dependencies = ["chronic" "deep_merge" "gli" "haml" "json"]; 20 + source = { 21 + remotes = ["https://rubygems.org"]; 22 + sha256 = "1y42yc7h45sz9hqj3g1dd77ipx58l7v64i7mrsj3is2f5rszd1rv"; 23 + type = "gem"; 24 + }; 25 + version = "1.0.10pre"; 26 + }; 27 + gli = { 28 + source = { 29 + remotes = ["https://rubygems.org"]; 30 + sha256 = "0g7g3lxhh2b4h4im58zywj9vcfixfgndfsvp84cr3x67b5zm4kaq"; 31 + type = "gem"; 32 + }; 33 + version = "2.17.1"; 34 + }; 35 + haml = { 36 + dependencies = ["tilt"]; 37 + source = { 38 + remotes = ["https://rubygems.org"]; 39 + sha256 = "1l9zhfdk9z7xjfdp108r9fw4xa55hflin7hh3lpafbf9bdz96knr"; 40 + type = "gem"; 41 + }; 42 + version = "4.0.3"; 43 + }; 44 + json = { 45 + source = { 46 + remotes = ["https://rubygems.org"]; 47 + sha256 = "0qmj7fypgb9vag723w1a49qihxrcf5shzars106ynw2zk352gbv5"; 48 + type = "gem"; 49 + }; 50 + version = "1.8.6"; 51 + }; 52 + tilt = { 53 + source = { 54 + remotes = ["https://rubygems.org"]; 55 + sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra"; 56 + type = "gem"; 57 + }; 58 + version = "2.0.8"; 59 + }; 60 + }
+1
pkgs/top-level/all-packages.nix
··· 22047 22047 22048 22048 powershell = callPackage ../shells/powershell { }; 22049 22049 22050 + doing = callPackage ../applications/misc/doing { }; 22050 22051 }