timetrap: 1.10.0 -> 1.15.1

This commit is contained in:
Matt McHenry 2018-02-22 10:13:37 -05:00
parent 8b1cf100cd
commit 1bf7dfaabe
3 changed files with 18 additions and 14 deletions

View File

@ -2,11 +2,11 @@ GEM
remote: https://rubygems.org/
specs:
chronic (0.10.2)
sequel (4.0.0)
sqlite3 (1.3.11)
timetrap (1.10.0)
sequel (4.43.0)
sqlite3 (1.3.13)
timetrap (1.15.1)
chronic (~> 0.10.2)
sequel (~> 4.0.0)
sequel (~> 4.43.0)
sqlite3 (~> 1.3.3)
PLATFORMS

View File

@ -1,14 +1,17 @@
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
name = "timetrap-1.10.0";
bundlerEnv rec {
name = "timetrap-${version}";
version = (import gemset).timetrap.version;
inherit ruby;
gemdir = ./.;
gemset = ./gemset.nix;
meta = {
meta = with lib; {
description = "A simple command line time tracker written in ruby";
homepage = https://github.com/samg/timetrap;
license = lib.licenses.mit;
license = licenses.mit;
maintainers = [ maintainers.jerith666 ];
};
}

View File

@ -10,25 +10,26 @@
sequel = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "17kqm0vd15p9qxbgcysvmg6a046fd7zvxl3xzpsh00pg6v454svm";
sha256 = "121z4sq2m4vsgxwy8hs6d12cc1i4xa5rjiv0nbviyj87jldxapw0";
type = "gem";
};
version = "4.0.0";
version = "4.43.0";
};
sqlite3 = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "19r06wglnm6479ffj9dl0fa4p5j2wi6dj7k6k3d0rbx7036cv3ny";
sha256 = "01ifzp8nwzqppda419c9wcvr8n82ysmisrs0hph9pdmv1lpa4f5i";
type = "gem";
};
version = "1.3.11";
version = "1.3.13";
};
timetrap = {
dependencies = ["chronic" "sequel" "sqlite3"];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1rdaa27zvdgmbsbwa59g3dvfwb95nz7x1wycmviby94j5lywyzfc";
sha256 = "0ylaz9q99hbxnw6h1df6wphmh68fj847d1l4f9jylcx3nzzp5cyd";
type = "gem";
};
version = "1.10.0";
version = "1.15.1";
};
}