Merge branch 'staging-next' into staging

This commit is contained in:
Jan Tojnar 2021-08-15 10:45:11 +02:00
commit 513701efce
55 changed files with 526 additions and 407 deletions

View File

@ -1,5 +1,5 @@
{ lib, stdenv, makeDesktopItem, freetype, fontconfig, libX11, libXrender
, zlib, jdk, glib, gtk, libXtst, gsettings-desktop-schemas, webkitgtk
, zlib, jdk, glib, gtk, libXtst, libsecret, gsettings-desktop-schemas, webkitgtk
, makeWrapper, perl, ... }:
{ name, src ? builtins.getAttr stdenv.hostPlatform.system sources, sources ? null, description }:
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
buildInputs = [
fontconfig freetype glib gsettings-desktop-schemas gtk jdk libX11
libXrender libXtst makeWrapper zlib
libXrender libXtst libsecret makeWrapper zlib
] ++ lib.optional (webkitgtk != null) webkitgtk;
buildCommand = ''
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
makeWrapper $out/eclipse/eclipse $out/bin/eclipse \
--prefix PATH : ${jdk}/bin \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ glib gtk libXtst ] ++ lib.optional (webkitgtk != null) webkitgtk)} \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ glib gtk libXtst libsecret ] ++ lib.optional (webkitgtk != null) webkitgtk)} \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
--add-flags "-configuration \$HOME/.eclipse/''${productId}_$productVersion/configuration"

View File

@ -11,7 +11,7 @@
# When the extension is already available in the default extensions set.
vscodeExtensions = with vscode-extensions; [
bbenoist.Nix
bbenoist.nix
]
# Concise version from the vscode market place when not available in the default set.

View File

@ -6,7 +6,7 @@
stdenv.mkDerivation rec {
pname = "lightburn";
version = "0.9.23";
version = "1.0.00";
nativeBuildInputs = [
p7zip
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://github.com/LightBurnSoftware/deployment/releases/download/${version}/LightBurn-Linux64-v${version}.7z";
sha256 = "sha256-OiW9UBophyEF3J0FOSMkbwDJ6d8SEDNrr+H0B4Ndo/Y=";
sha256 = "sha256-jNqLykVQjer2lps1gnw4fd2FH+ZQrzqQILAsl4Z5Hqk=";
};
buildInputs = [

View File

@ -5,13 +5,13 @@
mkDerivation rec {
pname = "klayout";
version = "0.26.10";
version = "0.27.3";
src = fetchFromGitHub {
owner = "KLayout";
repo = "klayout";
rev = "v${version}";
sha256 = "sha256-h2jCmLZ2pRlK8VblQosBX0ZcoHDnn4oYeSqzA3y1Tzg=";
sha256 = "sha256-6g/QoR16rhUfxhH4JxL6EERcoPVG/6MOxUlo6K/WoE0=";
};
postPatch = ''

View File

@ -2,14 +2,14 @@
buildGoPackage rec {
pname = "mob";
version = "1.4.0";
version = "1.8.0";
goPackagePath = "github.com/remotemobprogramming/mob";
src = fetchFromGitHub {
rev = "v${version}";
owner = "remotemobprogramming";
repo = pname;
sha256 = "sha256-JiTRTH8ai27H1xySyKTWiu/MG0C61Tz+hVI6tkSRp+k=";
sha256 = "sha256-GA+MmZU1KEg3HIU225Llr5W4dHGFGiMr/j0N/CslBC4=";
};
meta = with lib; {

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "writefreely";
version = "0.12.0";
version = "0.13.1";
src = fetchFromGitHub {
owner = "writeas";
repo = pname;
rev = "v${version}";
sha256 = "sha256-6LpRfDu3xvE1eIRLfZliKnzsrrG5pjjf2ydxn9HQJJU=";
sha256 = "sha256-qYceijC/u8G9vr7uhApWWyWD9P65pLJCTjePEvh+oXA=";
};
vendorSha256 = "sha256-U17AkMJQr/OIMED0i2ThcNVw3+aOvRLbpLNP/wEv6k8=";
vendorSha256 = "sha256-CBPvtc3K9hr1oEmC+yUe3kPSWx20k6eMRqoxsf3NfCE=";
nativeBuildInputs = [ go-bindata ];

View File

@ -1,11 +1,11 @@
{ fetchurl, lib, stdenv, libXrandr}:
stdenv.mkDerivation rec {
version = "0.01";
version = "0.02";
pname = "xrandr-invert-colors";
src = fetchurl {
url = "https://github.com/zoltanp/xrandr-invert-colors/archive/v${version}.tar.gz";
sha256 = "1z4hxn56rlflvqanb8ncqa1xqawnda85b1b37w6r2iqs8rw52d75";
sha256 = "sha256-7rIiBV9zbiLzu5RO5legHfGiqUSU2BuwqOc1dX/7ozA=";
};
buildInputs = [ libXrandr ];

View File

@ -64,8 +64,8 @@ in
};
edge = generic {
channel = "edge";
version = "21.7.4";
sha256 = "sha256-yorxP4SQVV6MWlx8+8l0f7qOaF7aJ1XiPfnMqKC8m/o=";
vendorSha256 = "sha256-2ZDsBiIV9ng8P0cDURbqDqMTxFKUFcBxHsPGWp5WjPo=";
version = "21.8.2";
sha256 = "sha256-jMYJ/mLWvuje4ZRuRbzMaqhz8kyn1bYGITJxkyw5Fyg=";
vendorSha256 = "sha256-18QB2GOxHfnP4GQaF0aohY5kEOg0xN/c+Sp33Ww/1uQ=";
};
}

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "temporal";
version = "1.11.2";
version = "1.11.3";
src = fetchFromGitHub {
owner = "temporalio";
repo = "temporal";
rev = "v${version}";
sha256 = "sha256-DskJtZGp8zmSWC5GJijNbhwKQF0Y0FXXh7wCzlbAgy8=";
sha256 = "sha256-SVcjKiIJqHYYO/zu0u/9GFR4Cg3jZvaVlZFfeCkXJoc=";
};
vendorSha256 = "sha256-eO/23MQpdXQNPCIzMC9nxvrgUFuEPABJ7vkBZKv+XZI=";

View File

@ -1,4 +1,4 @@
{ ctags, fetchurl, lib, libressl, man, ncurses, pkg-config, stdenv }:
{ ctags, fetchurl, fetchpatch, lib, libressl, ncurses, pkg-config, stdenv }:
stdenv.mkDerivation rec {
pname = "catgirl";
@ -9,8 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "182l7yryqm1ffxqgz3i4lcnzwzpbpm2qvadddmj0xc8dh8513s0w";
};
patches = [
(fetchpatch {
url = "https://git.causal.agency/catgirl/patch/?id=3f3585d0f32e66ad5c8c6c713f315e14810230eb";
sha256 = "1vrgimvf007bxz8blxm3vjc7g3xwxplwxyrblnsryq54cqaw0xv3";
})
];
nativeBuildInputs = [ ctags pkg-config ];
buildInputs = [ libressl man ncurses ];
buildInputs = [ libressl ncurses ];
strictDeps = true;
meta = with lib; {

View File

@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "agenda";
version = "1.1.1";
version = "1.1.2";
src = fetchFromGitHub {
owner = "dahenson";
repo = pname;
rev = version;
sha256 = "sha256-K6ZtYllxBzLUPS2qeSxtplXqayB1m49sqmB28tHDS14=";
sha256 = "sha256-tzGcqCxIkoBNskpadEqv289Sj5bij9u+LdYySiGdop8=";
};
nativeBuildInputs = [

View File

@ -2,15 +2,15 @@
, libsoup, gnome }:
stdenv.mkDerivation rec {
name = "homebank-5.5.3";
pname = "homebank";
version = "5.5.3";
src = fetchurl {
url = "http://homebank.free.fr/public/${name}.tar.gz";
url = "http://homebank.free.fr/public/homebank-${version}.tar.gz";
sha256 = "sha256-BzYHkYqWEAh3kfNvWecNEmH+6OThFGpc/VhxodLZEJM=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ gtk libofx intltool libsoup
gnome.adwaita-icon-theme ];
buildInputs = [ gtk libofx intltool libsoup gnome.adwaita-icon-theme ];
meta = with lib; {
description = "Free, easy, personal accounting for everyone";

View File

@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
pname = "verilator";
version = "4.202";
version = "4.210";
src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "0ydn4304pminzq8zc1hsrb2fjrfqnb6akr45ky43jd29c4jgznnq";
sha256 = "sha256-KoIfJeV2aITnwiB2eQgQo4ZyXfMe6erFiGKXezR+IBg=";
};
enableParallelBuilding = true;

View File

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "3.7";
version = "3.8";
pname = "xtermcontrol";
src = fetchurl {
url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
sha256 = "04m12ddaps5sdbqvkwkp6lh81i8vh5ya5gzcxkrkilsga3m6qff2";
sha256 = "sha256-Vh6GNiDkjNhaD9U/3fG2LpMLN39L3jRUgG/FQeG1z40=";
};
meta = {

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "bcompare";
version = "4.3.7.25118";
version = "4.4.0.25886";
src = fetchurl {
url = "https://www.scootersoftware.com/${pname}-${version}_amd64.deb";
sha256 = "165d6d81vy29pr62y4rcvl4abqqhfwdzcsx77p0dqlzgqswj88v8";
sha256 = "sha256-zQZrCjXzoOZ5o5M4t1n5/HhGoGTcZSj5rlf9Uz9UZko=";
};
unpackPhase = ''

View File

@ -3,8 +3,9 @@ source 'https://rubygems.org'
ruby '>= 2.4.0', '< 2.8.0'
gem 'bundler', '>= 1.12.0'
gem 'rails', '5.2.5'
gem 'rails', '5.2.6'
gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5'
gem 'globalid', '~> 0.4.2' if Gem.ruby_version < Gem::Version.new('2.6.0')
gem 'rouge', '~> 3.26.0'
gem 'request_store', '~> 1.5.0'
gem "mini_mime", "~> 1.0.1"

View File

@ -1,19 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
actioncable (5.2.5)
actionpack (= 5.2.5)
actioncable (5.2.6)
actionpack (= 5.2.6)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailer (5.2.5)
actionpack (= 5.2.5)
actionview (= 5.2.5)
activejob (= 5.2.5)
actionmailer (5.2.6)
actionpack (= 5.2.6)
actionview (= 5.2.6)
activejob (= 5.2.6)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.2.5)
actionview (= 5.2.5)
activesupport (= 5.2.5)
actionpack (5.2.6)
actionview (= 5.2.6)
activesupport (= 5.2.6)
rack (~> 2.0, >= 2.0.8)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
@ -21,31 +21,31 @@ GEM
actionpack-xml_parser (2.0.1)
actionpack (>= 5.0)
railties (>= 5.0)
actionview (5.2.5)
activesupport (= 5.2.5)
actionview (5.2.6)
activesupport (= 5.2.6)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.2.5)
activesupport (= 5.2.5)
activejob (5.2.6)
activesupport (= 5.2.6)
globalid (>= 0.3.6)
activemodel (5.2.5)
activesupport (= 5.2.5)
activerecord (5.2.5)
activemodel (= 5.2.5)
activesupport (= 5.2.5)
activemodel (5.2.6)
activesupport (= 5.2.6)
activerecord (5.2.6)
activemodel (= 5.2.6)
activesupport (= 5.2.6)
arel (>= 9.0)
activestorage (5.2.5)
actionpack (= 5.2.5)
activerecord (= 5.2.5)
activestorage (5.2.6)
actionpack (= 5.2.6)
activerecord (= 5.2.6)
marcel (~> 1.0.0)
activesupport (5.2.5)
activesupport (5.2.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.7.0)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
arel (9.0.0)
ast (2.4.2)
@ -60,19 +60,19 @@ GEM
xpath (~> 3.2)
childprocess (3.0.0)
chunky_png (1.4.0)
concurrent-ruby (1.1.8)
concurrent-ruby (1.1.9)
crass (1.0.6)
css_parser (1.9.0)
css_parser (1.10.0)
addressable
csv (3.1.9)
docile (1.3.5)
docile (1.4.0)
erubi (1.10.0)
globalid (0.4.2)
activesupport (>= 4.2.0)
globalid (0.5.2)
activesupport (>= 5.0)
htmlentities (4.3.4)
i18n (1.8.10)
concurrent-ruby (~> 1.0)
loofah (2.9.1)
loofah (2.12.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
@ -81,21 +81,21 @@ GEM
method_source (1.0.0)
mini_magick (4.11.0)
mini_mime (1.0.3)
mini_portile2 (2.5.1)
mini_portile2 (2.5.3)
minitest (5.14.4)
mocha (1.12.0)
mocha (1.13.0)
mysql2 (0.5.3)
net-ldap (0.17.0)
nio4r (2.5.7)
nokogiri (1.11.3)
nio4r (2.5.8)
nokogiri (1.11.7)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
parallel (1.20.1)
parser (3.0.1.0)
parser (3.0.2.0)
ast (~> 2.4.1)
pg (1.2.3)
public_suffix (4.0.6)
puma (5.2.2)
puma (5.4.0)
nio4r (~> 2.0)
racc (1.5.2)
rack (2.2.3)
@ -104,32 +104,32 @@ GEM
ruby-openid (>= 2.1.8)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails (5.2.5)
actioncable (= 5.2.5)
actionmailer (= 5.2.5)
actionpack (= 5.2.5)
actionview (= 5.2.5)
activejob (= 5.2.5)
activemodel (= 5.2.5)
activerecord (= 5.2.5)
activestorage (= 5.2.5)
activesupport (= 5.2.5)
rails (5.2.6)
actioncable (= 5.2.6)
actionmailer (= 5.2.6)
actionpack (= 5.2.6)
actionview (= 5.2.6)
activejob (= 5.2.6)
activemodel (= 5.2.6)
activerecord (= 5.2.6)
activestorage (= 5.2.6)
activesupport (= 5.2.6)
bundler (>= 1.3.0)
railties (= 5.2.5)
railties (= 5.2.6)
sprockets-rails (>= 2.0.0)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
railties (5.2.5)
actionpack (= 5.2.5)
activesupport (= 5.2.5)
railties (5.2.6)
actionpack (= 5.2.6)
activesupport (= 5.2.6)
method_source
rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0)
rainbow (3.0.0)
rake (13.0.3)
rake (13.0.6)
rbpdf (1.20.1)
htmlentities
rbpdf-font (~> 1.19.0)
@ -147,10 +147,10 @@ GEM
roadie (>= 3.1, < 5.0)
rotp (6.2.0)
rouge (3.26.0)
rqrcode (1.2.0)
rqrcode (2.0.0)
chunky_png (~> 1.0)
rqrcode_core (~> 0.2)
rqrcode_core (0.2.0)
rqrcode_core (~> 1.0)
rqrcode_core (1.1.0)
rubocop (1.12.1)
parallel (~> 1.10)
parser (>= 3.0.0.0)
@ -160,8 +160,8 @@ GEM
rubocop-ast (>= 1.2.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.4.1)
parser (>= 2.7.1.5)
rubocop-ast (1.10.0)
parser (>= 3.0.1.1)
rubocop-performance (1.10.2)
rubocop (>= 0.90.0, < 2.0)
rubocop-ast (>= 0.4.0)
@ -171,7 +171,7 @@ GEM
rubocop (>= 0.90.0, < 2.0)
ruby-openid (2.9.2)
ruby-progressbar (1.11.0)
rubyzip (2.3.0)
rubyzip (2.3.2)
selenium-webdriver (3.142.7)
childprocess (>= 0.5, < 4.0)
rubyzip (>= 1.2.2)
@ -195,7 +195,7 @@ GEM
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (>= 3.0, < 4.0)
websocket-driver (0.7.3)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
@ -224,7 +224,7 @@ DEPENDENCIES
pg (~> 1.2.2)
puma
rack-openid
rails (= 5.2.5)
rails (= 5.2.6)
rails-dom-testing
rbpdf (~> 1.20.0)
redcarpet (~> 3.5.1)
@ -245,7 +245,7 @@ DEPENDENCIES
yard
RUBY VERSION
ruby 2.6.6p146
ruby 2.7.3p183
BUNDLED WITH
2.1.4

View File

@ -1,7 +1,7 @@
{ lib, stdenv, fetchurl, bundlerEnv, ruby, makeWrapper }:
let
version = "4.2.1";
version = "4.2.2";
rubyEnv = bundlerEnv {
name = "redmine-env-${version}";
@ -16,7 +16,7 @@ in
src = fetchurl {
url = "https://www.redmine.org/releases/${pname}-${version}.tar.gz";
sha256 = "1d217fhyvncpwahwlinr3vc20vn7jijaxxk1i56gw72z8b1hjhdd";
sha256 = "1xlqf7g5imjmc3as2aajvbrs217jh3qpdvvpsd9mka9rk4kykyz6";
};
nativeBuildInputs = [ makeWrapper ];

View File

@ -5,10 +5,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "16g623zz4nnwj236xms4n85jbc2b1imddqsx3gd4x4b7xqlwlw9p";
sha256 = "1s778lwghaf0zwfvbhzvjq691rl75d85raiqg1c7zly8p9afq8ym";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
actionmailer = {
dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
@ -16,10 +16,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1ifmlwlm4bs6gm3y4c701wkhyf4ym4kia44npz9fbc92ariawn2z";
sha256 = "0gwvn4lrkhqmxp96npjp4sfaz78h9ab2lrl20sjph7xxakfwknld";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@ -27,10 +27,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1m9wdcnkls8cs31gfic5hffnrz0l1iyk0dldwx2q2z58qhh3sw0m";
sha256 = "0b2xl458f2ygnjbvv0hacc8bk9qxbx64m2g7vw6f9y7k8q85930y";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
actionpack-xml_parser = {
dependencies = ["actionpack" "railties"];
@ -49,10 +49,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1xlcfcbmwlmcp6vi9ay5xw9lqnj70bl1gn19hafygv9w65sw0n2i";
sha256 = "06f8212kplqhap9jpi49dvqlhwkfxxxm9nh8al6qjvl7mfh9qbzg";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
activejob = {
dependencies = ["activesupport" "globalid"];
@ -60,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "00k5fl4bx9qmrkwn8mdfdh8h2did0bnr3nc3g0fdyvm7ql9981jc";
sha256 = "1cdvxkbzbs4cdh4bgf2cg7i886a20gvr43hg76kx5rzd8xal7xnd";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
activemodel = {
dependencies = ["activesupport"];
@ -71,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1bb600bsxd0gf4vwqq2qiklg7wd37b0as6ll3k5hjy9v6izj006b";
sha256 = "1r28kcnzr8dm6idirndd8pvbmg5c678ijxk845g84ykq1l69czs6";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
activerecord = {
dependencies = ["activemodel" "activesupport" "arel"];
@ -82,10 +82,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "03zijqm7xdmmylzp68hadvq5rps67lsq10hnq6kpmhq496pp7wlj";
sha256 = "05qqnichgxml6z3d1dpgjy2fi62dppnqxgg37hr9a35hwhn05fzc";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
activestorage = {
dependencies = ["actionpack" "activerecord" "marcel"];
@ -93,10 +93,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1706qircxl9agrq5423zv0i9p7gvcxcligw8vvclk049hks87gqd";
sha256 = "0wnzac1qs4y339p13xyr03rx4ql3i4ywzfhyzn118d2zz82xnpfl";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
activesupport = {
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
@ -104,10 +104,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1bizrvn05d59l1qzwkhqvwmzicamq4p66z2ziap5ks9y6hqgqmzj";
sha256 = "1vybx4cj42hr6m8cdwbrqq2idh98zms8c11kr399xjczhl9ywjbj";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
addressable = {
dependencies = ["public_suffix"];
@ -115,10 +115,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1fvchp2rhp2rmigx7qglf69xvjqvzq7x0g49naliw29r2bz656sy";
sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp";
type = "gem";
};
version = "2.7.0";
version = "2.8.0";
};
arel = {
groups = ["default"];
@ -186,10 +186,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3";
sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f";
type = "gem";
};
version = "1.1.8";
version = "1.1.9";
};
crass = {
groups = ["default"];
@ -207,10 +207,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0xs4ind9xd099rb52b73pch8ha143dl8bhivqsbba4wrvxpbx751";
sha256 = "1q8gj3wkc2mbzsqw5zcsr3kyzrrb2pda03pi769rjbvqr94g3bm5";
type = "gem";
};
version = "1.9.0";
version = "1.10.0";
};
csv = {
groups = ["default"];
@ -227,10 +227,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1bpdrsdqwv80qqc3f4xxzpii13lx9mlx3zay4bnmmscrx8c0p63z";
sha256 = "1lxqxgq71rqwj1lpl9q1mbhhhhhhdkkj7my341f2889pwayk85sz";
type = "gem";
};
version = "1.3.5";
version = "1.4.0";
};
erubi = {
groups = ["default"];
@ -248,10 +248,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1zkxndvck72bfw235bd9nl2ii0lvs5z88q14706cmn702ww2mxv1";
sha256 = "0k6ww3shk3mv119xvr9m99l6ql0czq91xhd66hm8hqssb18r2lvm";
type = "gem";
};
version = "0.4.2";
version = "0.5.2";
};
htmlentities = {
groups = ["default"];
@ -280,10 +280,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1w9mbii8515p28xd4k72f3ab2g6xiyq15497ys5r8jn6m355lgi7";
sha256 = "1nqcya57x2n58y1dify60i0dpla40n4yir928khp4nj5jrn9mgmw";
type = "gem";
};
version = "2.9.1";
version = "2.12.0";
};
mail = {
dependencies = ["mini_mime"];
@ -341,10 +341,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0xg1x4708a4pn2wk8qs2d8kfzzdyv9kjjachg2f1phsx62ap2rx2";
sha256 = "1ad0mli9rc0f17zw4ibp24dbj1y39zkykijsjmnzl4gwpg5s0j6k";
type = "gem";
};
version = "2.5.1";
version = "2.5.3";
};
minitest = {
groups = ["default" "test"];
@ -361,10 +361,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "05yw6rwgjppq116jgqfg4pv4bql3ci4r2fmmg0m2c3sqib1bq41a";
sha256 = "15s53ggsykk69kxqvs4416s8yxdhz6caggva55n8sjgy4ixzwp10";
type = "gem";
};
version = "1.12.0";
version = "1.13.0";
};
mysql2 = {
groups = ["default"];
@ -399,10 +399,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "00fwz0qq7agd2xkdz02i8li236qvwhma3p0jdn5bdvc21b7ydzd5";
sha256 = "0xk64wghkscs6bv2n22853k2nh39d131c6rfpnlw12mbjnnv9v1v";
type = "gem";
};
version = "2.5.7";
version = "2.5.8";
};
nokogiri = {
dependencies = ["mini_portile2" "racc"];
@ -410,10 +410,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "19d78mdg2lbz9jb4ph6nk783c9jbsdm8rnllwhga6pd53xffp6x0";
sha256 = "1vrn31385ix5k9b0yalnlzv360isv6dincbcvi8psllnwz4sjxj9";
type = "gem";
};
version = "1.11.3";
version = "1.11.7";
};
parallel = {
groups = ["default" "test"];
@ -431,10 +431,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "04ri489irbbx6sbkclpgri7j7p99v2qib5g2i70xx5fay12ilny8";
sha256 = "06ma6w87ph8lnc9z4hi40ynmcdnjv0p8x53x0s3fjkz4q2p6sxh5";
type = "gem";
};
version = "3.0.1.0";
version = "3.0.2.0";
};
pg = {
groups = ["default"];
@ -470,10 +470,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0wiprd0v4mjqv5p1vqaidr9ci2xm08lcxdz1k50mb1b6nrw6r74k";
sha256 = "0bz9y1hxfyv73yb26nvs2kcw08gxi7nxkfc94j82hgx2sifcnv3x";
type = "gem";
};
version = "5.2.2";
version = "5.4.0";
};
racc = {
groups = ["default" "test"];
@ -523,10 +523,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1p0sa36sngmfkmykcv5qhpr7rzsrc42cd9flhnxjs3r5b0jsl52c";
sha256 = "1p17dmifd0v3knh9wja4z4rv0qaybwansnwxmvx6f3rcgkszkpnc";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
rails-dom-testing = {
dependencies = ["activesupport" "nokogiri"];
@ -556,10 +556,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "072spzdpc8bv35nflr43i67njlriavqkrz6cgyd42adz6bqyval9";
sha256 = "0rs97fxv13hgpbmyhk8ag8qzgkh25css0797h90k9w1vg9djl84k";
type = "gem";
};
version = "5.2.5";
version = "5.2.6";
};
rainbow = {
groups = ["default" "test"];
@ -576,10 +576,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67";
sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w";
type = "gem";
};
version = "13.0.3";
version = "13.0.6";
};
rbpdf = {
dependencies = ["htmlentities" "rbpdf-font"];
@ -691,20 +691,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0f1cv9a9sjqc898qm3h7zmkhwglrjw5blsskbg3gsaws01d4bc47";
sha256 = "073w0qgjydkqpsqsb9yr8qg0mhvwlzx6z53hqr2b5zifvb9wzh02";
type = "gem";
};
version = "1.2.0";
version = "2.0.0";
};
rqrcode_core = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "00kqasqja8zyzqvlgiwd9r0wndqk01qk5j68a8lhlz4ayrd4qy0y";
sha256 = "0d632w2pd34bw9l3bsfnyqaa8vgbz9pxpj29gpf8parqr7wq922k";
type = "gem";
};
version = "0.2.0";
version = "1.1.0";
};
rubocop = {
dependencies = ["parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
@ -723,10 +723,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0gkf1p8yal38nlvdb39qaiy0gr85fxfr09j5dxh8qvrgpncpnk78";
sha256 = "0x6za0j9wwxr14rkkkmpbnwj04lak4yjmkyrdl8c31m9acba80zw";
type = "gem";
};
version = "1.4.1";
version = "1.10.0";
};
rubocop-performance = {
dependencies = ["rubocop" "rubocop-ast"];
@ -775,10 +775,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0590m2pr9i209pp5z4mx0nb1961ishdiqb28995hw1nln1d1b5ji";
sha256 = "0grps9197qyxakbpw02pda59v45lfgbgiyw48i0mq9f2bn9y6mrz";
type = "gem";
};
version = "2.3.0";
version = "2.3.2";
};
selenium-webdriver = {
dependencies = ["childprocess" "rubyzip"];
@ -892,10 +892,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1i3rs4kcj0jba8idxla3s6xd1xfln3k8b4cb1dik2lda3ifnp3dh";
sha256 = "0a3bwxd9v3ghrxzjc4vxmf4xa18c6m4xqy5wb0yk5c6b9psc7052";
type = "gem";
};
version = "0.7.3";
version = "0.7.5";
};
websocket-extensions = {
groups = ["default"];

View File

@ -111,12 +111,13 @@ rec {
destNameTag = "${finalImageName}:${finalImageTag}";
} ''
skopeo \
--src-tls-verify=${lib.boolToString tlsVerify} \
--insecure-policy \
--tmpdir=$TMPDIR \
--override-os ${os} \
--override-arch ${arch} \
copy "$sourceURL" "docker-archive://$out:$destNameTag" \
copy \
--src-tls-verify=${lib.boolToString tlsVerify} \
"$sourceURL" "docker-archive://$out:$destNameTag" \
| cat # pipe through cat to force-disable progress bar
'';

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "marwaita";
version = "10.2";
version = "10.3";
src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
rev = version;
sha256 = "09xh7yhnc7szk171n0qgr52xr7sw9qq4cb7qwrkhf0184idf0pik";
sha256 = "0v9sxjy4x03y3hcgbkn9lj010kd5csiyc019dwxzvx5kg8xh8qca";
};
buildInputs = [

View File

@ -18,11 +18,11 @@
}:
let
release_version = "13.0.0";
release_version = "14.0.0";
candidate = ""; # empty or "rcN"
dash-candidate = lib.optionalString (candidate != "") "-${candidate}";
rev = "f98ed74f6910f8b09e77497aeb30c860c433610d"; # When using a Git commit
rev-version = "unstable-2021-07-16"; # When using a Git commit
rev = "7d9d926a1861e2f6876943d47f297e2a08a57392"; # When using a Git commit
rev-version = "unstable-2021-08-03"; # When using a Git commit
version = if rev != "" then rev-version else "${release_version}${dash-candidate}";
targetConfig = stdenv.targetPlatform.config;
@ -30,7 +30,7 @@ let
owner = "llvm";
repo = "llvm-project";
rev = if rev != "" then rev else "llvmorg-${version}";
sha256 = "1dp0n3rpg60xr321mvn2gi268pfcs6ii4nnwgsi2lix0di4h3ccb";
sha256 = "0v9jk49raazy5vhccagnmf6c3cxjv56rwg3670k9x9snihx2782r";
};
llvm_meta = {

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "aws-c-common";
version = "0.6.8";
version = "0.6.9";
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-wtgD8txViYu7yXdnID6TTf4gCDmvebD19XRxFnubndY=";
sha256 = "sha256-bnKIL51AW+0T87BxEazXDZElYqiwOUHQVEDKOCUzsbM=";
};
nativeBuildInputs = [ cmake ];

View File

@ -11,14 +11,14 @@ in
stdenv.mkDerivation rec {
pname = "fcft";
version = "2.4.4";
version = "2.4.5";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fcft";
rev = version;
sha256 = "0ycc2xy9jhxcxwbfk9d4jdxgf2zsc664phbf859kshb822m3jf57";
sha256 = "0z4bqap88pydkgcxrsvm3fmcyhi9x7z8knliarvdcvqlk7qnyzfh";
};
depsBuildBuild = [ pkg-config ];

View File

@ -24,6 +24,12 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
"--enable-pax_emutramp"
# Causes issues in downstream packages which misuse ffi_closure_alloc
# Reenable once these issues are fixed and merged:
# https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6155
# https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283
"--disable-exec-static-tramp"
];
preCheck = ''

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libite";
version = "2.2.0";
version = "2.4.0";
src = fetchFromGitHub {
owner = "troglobit";
repo = "libite";
rev = "v${version}";
sha256 = "0kad501mrvn0s0sw9pz5spjq7ymk117hnff249z6026gswrxv1mh";
sha256 = "sha256-EV1YVOxd92z2hBZIqe6jzYV06YfNTAbZntZQdH05lBI=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];

View File

@ -63,11 +63,6 @@ let
};
in {
libressl_3_1 = generic {
version = "3.1.5";
sha256 = "1504a1sf43frw43j14pij0q1f48rm5q86ggrlxxhw708qp7ds4rc";
};
libressl_3_2 = generic {
version = "3.2.5";
sha256 = "1zkwrs3b19s1ybz4q9hrb7pqsbsi8vxcs44qanfy11fkc7ynb2kr";

View File

@ -24,7 +24,7 @@
, mkDerivation
, which
}:
let inherit (lib) getDev; in
mkDerivation rec {
pname = "mlt";
version = "7.0.1";

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "totem-pl-parser";
version = "3.26.5";
version = "3.26.6";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "132jihnf51zs98yjkc6jxyqib4f3dawpjm17g4bj4j78y93dww2k";
sha256 = "wN8PaNXPnX2kPIHH8T8RFYNYNo+Ywi1Hci870EvTrBw=";
};
passthru = {

View File

@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "zlib-ng";
version = "2.0.2";
version = "2.0.5";
src = fetchFromGitHub {
owner = "zlib-ng";
repo = "zlib-ng";
rev = version;
sha256 = "1cl6asrav2512j7p02zcpibywjljws0m7aazvb3q2r9qiyvyswji";
sha256 = "sha256-KvV1XtPoagqPmijdr20eejsXWG7PRjMUwGPLXazqUHM=";
};
outputs = [ "out" "dev" "bin" ];

View File

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "cachelib";
version = "0.2.0";
version = "0.3.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pallets";
repo = pname;
rev = version;
sha256 = "1jh1ghvrv1mnw6mdq19s6x6fblz9qi0vskc6mjp0cxjpnxxblaml";
sha256 = "sha256-ssyHNlrSrG8YHRS131jJtmgl6eMTNdet1Hf0nTxL8sM=";
};
checkInputs = [

View File

@ -1,43 +1,61 @@
{ lib
, appdirs
, buildPythonPackage
, fetchPypi
, six
, cachelib
, cssselect
, fetchFromGitHub
, keep
, lxml
, pygments
, pyquery
, cachelib
, appdirs
, keep
, requests
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "howdoi";
version = "2.0.16";
version = "2.0.17";
src = fetchPypi {
inherit pname version;
sha256 = "0257fbb328eb3a15ed3acc498314902f00908b130209073509eec21cb7235b2b";
src = fetchFromGitHub {
owner = "gleitz";
repo = pname;
rev = "v${version}";
sha256 = "1cc9hbnalbsd5la9wsm8s6drb79vlzin9qnv86ic81r5nq27n180";
};
postPatch = ''
substituteInPlace setup.py --replace 'cachelib==0.1' 'cachelib'
'';
propagatedBuildInputs = [
appdirs
cachelib
cssselect
keep
lxml
pygments
pyquery
requests
six
];
propagatedBuildInputs = [ six pygments pyquery cachelib appdirs keep ];
checkInputs = [
pytestCheckHook
];
# author hasn't included page_cache directory (which allows tests to run without
# external requests) in pypi tarball. github repo doesn't have release revisions
# clearly tagged. re-enable tests when either is sorted.
doCheck = false;
preCheck = ''
mv howdoi _howdoi
export HOME=$(mktemp -d)
'';
disabledTests = [
# AssertionError: "The...
"test_get_text_with_one_link"
"test_get_text_without_links"
];
pythonImportsCheck = [ "howdoi" ];
meta = with lib; {
description = "Instant coding answers via the command line";
homepage = "https://pypi.python.org/pypi/howdoi";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc ];
};
}

View File

@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.73";
version = "0.1.74";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-KaeheCIJgAqC68rgE71b1sSatSH25phGk662fnuOOsk=";
sha256 = "sha256-Z0226G0eivU+Uo7MShGv9xqcl1QtAmbEzhI1IBjPL5M=";
};
checkPhase = ''

View File

@ -24,13 +24,13 @@
buildPythonPackage rec {
pname = "python-miio";
version = "0.5.6";
version = "0.5.7";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tmGt50xBDV++/pqyXsuxHdrwv+XbkjvtrzsYBzQh7zE=";
sha256 = "sha256-Dl/9aiCb8RYcSGEkO9X51Oaqg7FOv5mWYIDZs9fpOIg=";
};
postPatch = ''

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, aiohttp
, python-dateutil
, requests
, websockets
}:
buildPythonPackage rec {
pname = "pytwitchapi";
version = "2.3.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Teekeks";
repo = "pyTwitchAPI";
rev = "v${version}";
sha256 = "sha256-ax3FHyyyRfXSWKsoUi8ao5TL2alo0bQP+lWiDaPjf34=";
};
propagatedBuildInputs = [
aiohttp
python-dateutil
requests
websockets
];
# Project has no tests.
doCheck = false;
pythonImportsCheck = [ "twitchAPI" ];
meta = with lib; {
description = "Python implementation of the Twitch Helix API, its Webhook and PubSub";
homepage = "https://github.com/Teekeks/pyTwitchAPI";
license = licenses.mit;
maintainers = with maintainers; [ wolfangaukang ];
};
}

View File

@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "yamllint";
version = "1.26.1";
version = "1.26.2";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-h9lGKz7X6d+hnKoXf3p3zZiIs9xARER9auCrIzvNEyQ=";
sha256 = "sha256-CwipZ1Akj98h8egZPLd4dVTvde1Xsn9iHNazvwmvEaE=";
};
propagatedBuildInputs = [

View File

@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "zeroconf";
version = "0.34.3";
version = "0.35.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -19,7 +19,7 @@ buildPythonPackage rec {
owner = "jstasiak";
repo = "python-zeroconf";
rev = version;
sha256 = "sha256-HJSqQl7dd8sN490lqGHWg6QiJblGKKlVMn7UJDQb7ZA=";
sha256 = "sha256-6/y9O7YYs1J+qFa/6pcHKiktkWa4bdEqUItK8IZGXJo=";
};
propagatedBuildInputs = [

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "webdis";
version = "0.1.15";
version = "0.1.16";
src = fetchFromGitHub {
owner = "nicolasff";
repo = pname;
rev = version;
sha256 = "sha256-ViU/CKkmBY8WwQq/oJ2/qETqr2k8JNFtNPhozw5BmEc=";
sha256 = "sha256-I+Nq3kjXoQlwfj8r7oNu6KFE6hnB076M9aJMdwCas3k=";
};
buildInputs = [ hiredis http-parser jansson libevent ];

View File

@ -1,14 +1,14 @@
{ buildGoModule, lib, fetchFromGitHub }:
buildGoModule rec {
pname = "mockgen";
version = "1.5.0";
version = "1.6.0";
src = fetchFromGitHub {
owner = "golang";
repo = "mock";
rev = "v${version}";
sha256 = "sha256-YSPfe8/Ra72qk12+T78mTppvkag0Hw6O7WNyfhG4h4o=";
sha256 = "sha256-5Kp7oTmd8kqUN+rzm9cLqp9nb3jZdQyltGGQDiRSWcE=";
};
vendorSha256 = "sha256-cL4a7iOSeaQiG6YO0im9bXxklCL1oyKhEDmB1BtEmEw=";
vendorSha256 = "sha256-5gkrn+OxbNN8J1lbgbxM8jACtKA7t07sbfJ7gVJWpJM=";
doCheck = false;

View File

@ -101,12 +101,12 @@ final: prev:
aniseed = buildVimPluginFrom2Nix {
pname = "aniseed";
version = "2021-07-19";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "Olical";
repo = "aniseed";
rev = "c15c4e49d6ecb7ad7252902bb1b4310ba161617a";
sha256 = "13pnlx4rqjc51vrq9d8kyjjxb2apw3y6j2xh68ii746klinjpjy5";
rev = "0b0173592740a4b4c36cbdc195f0aa7422dd4666";
sha256 = "09mv0yqj8qqj7i8dfqg50vin6whg9sc5scfsxr20jrx278z94j6h";
};
meta.homepage = "https://github.com/Olical/aniseed/";
};
@ -281,12 +281,12 @@ final: prev:
barbar-nvim = buildVimPluginFrom2Nix {
pname = "barbar-nvim";
version = "2021-08-10";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "romgrk";
repo = "barbar.nvim";
rev = "f4163e2ca987f25c3d1fb5cf3d9329d8ab343f35";
sha256 = "1wlxfkpa42rvw853x8nalxy3zxaaji0d365jbp3pcvhsy0li33dc";
rev = "0c4c37eb3188230b11493adac68aac491c5e6a07";
sha256 = "0pc5rrzhcrp7p5wwid4ggdakp5y05ki0hkm04bflq0y4ib4haa4c";
};
meta.homepage = "https://github.com/romgrk/barbar.nvim/";
};
@ -437,12 +437,12 @@ final: prev:
chadtree = buildVimPluginFrom2Nix {
pname = "chadtree";
version = "2021-08-10";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
rev = "5647222ddcf1bb484103da1267028b4074f55a32";
sha256 = "02dyhgfp76bxggjlyc0kq9wfcz96319x4y49fqmanqdhgmqbzzxb";
rev = "c155b348d89e1e24c30461337ba12f50c728b755";
sha256 = "1a52kkz37fzmd8cr1bb0kl032l64ayhz3n51jwhia9s3ps3siyzv";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@ -798,12 +798,12 @@ final: prev:
conjure = buildVimPluginFrom2Nix {
pname = "conjure";
version = "2021-08-03";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "Olical";
repo = "conjure";
rev = "998603d240b13e32e3c9571bcb805357ea323fa9";
sha256 = "1fd7d3nfb8qi0zk2jskkmym3yb8qzys7li88cjfxdqrl9kcqa723";
rev = "368c5cc0f4a7a6bdc0d1041fc74fb922b31882c9";
sha256 = "1289gs3w40zbv6rd41s8qqnj1wp1bzgxnn0s91v9ip6g17f31ljm";
};
meta.homepage = "https://github.com/Olical/conjure/";
};
@ -834,12 +834,12 @@ final: prev:
Coqtail = buildVimPluginFrom2Nix {
pname = "Coqtail";
version = "2021-08-11";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "whonore";
repo = "Coqtail";
rev = "0ca6714f45124afadce133f21bfe00aaa3edc2ad";
sha256 = "1hy9y34amrcbr64mzllj7xrldkxw0a0qp48mkc17csgxchqc5wxx";
rev = "46b4fe60778064d7924534c9658d29858d7d67a7";
sha256 = "16fmzn4vf7ha63r73ra2lpdww1hmg2jnr88bpw2in3c8id6df2rd";
};
meta.homepage = "https://github.com/whonore/Coqtail/";
};
@ -1352,12 +1352,12 @@ final: prev:
doki-theme-vim = buildVimPluginFrom2Nix {
pname = "doki-theme-vim";
version = "2021-08-07";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "doki-theme";
repo = "doki-theme-vim";
rev = "83f3478dee644b4be534ada9456e915cbb4f37be";
sha256 = "0s53h7dfyv05z0w186957scrdxihmk6s8db29d4iq7d81hsxckxg";
rev = "78502433a41589ead80c834f9e61d7a17f97b844";
sha256 = "1gfxq9sfld0vx320q15r8xk6kwxxbl7jla3ykr6wd167bnr1z7q0";
};
meta.homepage = "https://github.com/doki-theme/doki-theme-vim/";
};
@ -1388,12 +1388,12 @@ final: prev:
echodoc-vim = buildVimPluginFrom2Nix {
pname = "echodoc-vim";
version = "2021-07-09";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "Shougo";
repo = "echodoc.vim";
rev = "9288bef70cda903edc2561c7612fe2d6a3c73aa5";
sha256 = "1s6glmc489dfz750d3xikwxm84qqa89qza1jp3vfj7jn47h1r826";
rev = "3e907e05d0495f999149f50a1e6cd72972ee7cbe";
sha256 = "0bdiz108l4aa5ma49lbmmp8ks8n17i6wzjsawd94rgsyl3j4j3ri";
};
meta.homepage = "https://github.com/Shougo/echodoc.vim/";
};
@ -1522,12 +1522,12 @@ final: prev:
fastfold = buildVimPluginFrom2Nix {
pname = "fastfold";
version = "2021-08-03";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "konfekt";
repo = "fastfold";
rev = "066d2347baa8dc180c18f889d0b37a826f23973b";
sha256 = "0m04jn8701hl4fqjsfc6dalikqvgrql3fwqrc8z81swcjyf6rsaw";
rev = "20126c1646f96da862af7cbec45ca0fe0a930703";
sha256 = "12hqr9glh6wpjmacb2ib4phf29icwj9pxccmcap79w9w5p6zy2yn";
};
meta.homepage = "https://github.com/konfekt/fastfold/";
};
@ -1679,12 +1679,12 @@ final: prev:
friendly-snippets = buildVimPluginFrom2Nix {
pname = "friendly-snippets";
version = "2021-08-06";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "rafamadriz";
repo = "friendly-snippets";
rev = "cafecca6f3586b2ccb3c6b4db2082662f36e8c7f";
sha256 = "0dsl4ccwnlv2i1pmmjlrxw0ns2amrv1vn8khm1c52hl3377j3dwq";
rev = "276abeaf7a350724ca948f1c21de0b12d3cedc4f";
sha256 = "1lbm98ijihmikazjm0a7cckqlc7c32bsqzqk077wbigkx559zam9";
};
meta.homepage = "https://github.com/rafamadriz/friendly-snippets/";
};
@ -1859,12 +1859,12 @@ final: prev:
git-worktree-nvim = buildVimPluginFrom2Nix {
pname = "git-worktree-nvim";
version = "2021-07-15";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "ThePrimeagen";
repo = "git-worktree.nvim";
rev = "97adf37032c213201c823e98b0555f7279525d62";
sha256 = "0vca7pyipch3y3g19sfwqx33l8jh3h7r9wv3hlfw960iyqc2xia7";
rev = "35007615f75262a6b411e11e8928e504af7ebb5e";
sha256 = "1kh7nvvb8nrgqnp2h78v5s7swa71xrbj4q3k2xrsiz11s16q72hn";
};
meta.homepage = "https://github.com/ThePrimeagen/git-worktree.nvim/";
};
@ -2508,12 +2508,12 @@ final: prev:
LeaderF = buildVimPluginFrom2Nix {
pname = "LeaderF";
version = "2021-07-22";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "Yggdroot";
repo = "LeaderF";
rev = "321f1995211b05d5abd73732262432e70eba1218";
sha256 = "1bg0vjf6pnbjmj76mzcbcrm7gdhsxqi040xspyizfykj72qjqyd4";
rev = "e7d0b761fd9d4f2c326a4e421592b4c5ea51ae44";
sha256 = "1zhq8wjpy4yx1mcyahscflfjm52hb7pfpxv51vmwlh2rp044b6j1";
};
meta.homepage = "https://github.com/Yggdroot/LeaderF/";
};
@ -2556,12 +2556,12 @@ final: prev:
lexima-vim = buildVimPluginFrom2Nix {
pname = "lexima-vim";
version = "2020-07-31";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "cohama";
repo = "lexima.vim";
rev = "89bf4dc13539131a29cf938074b3f1ce9d000bfd";
sha256 = "19b73r3v4i64kiijihzqlbj6bf6jd1w90qc7d3lg95iwlaczd8v0";
rev = "6b716e2118d842a26620387f0845e57cfd69ffaf";
sha256 = "1az40rjfyvwg9zkk822abrf0v0ccm29rp5290capirnfna5w71d6";
};
meta.homepage = "https://github.com/cohama/lexima.vim/";
};
@ -2700,12 +2700,12 @@ final: prev:
lsp-rooter-nvim = buildVimPluginFrom2Nix {
pname = "lsp-rooter-nvim";
version = "2021-05-25";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "ahmedkhalf";
repo = "lsp-rooter.nvim";
rev = "ca8670c8fc4efbd9a05f330f4037304962c9abbb";
sha256 = "1p24gk4yps21wm8gwrsp9a6c2ynwv6xlp7iny2448l2yvrjw494n";
rev = "7c83364f5a40db6c91f322fb148a99be8cec7b91";
sha256 = "1zmjc9a72swndgzzqyax1r6ifi858dq445ygmpxbpav8kp0q7n4g";
};
meta.homepage = "https://github.com/ahmedkhalf/lsp-rooter.nvim/";
};
@ -2736,12 +2736,12 @@ final: prev:
lsp_signature-nvim = buildVimPluginFrom2Nix {
pname = "lsp_signature-nvim";
version = "2021-08-11";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "ray-x";
repo = "lsp_signature.nvim";
rev = "6f0d7b847334ca460b0484cb527afdf13a9febaa";
sha256 = "1iy6pfz2y4908b22l5zdgj9bynciy6yb4g5x8irgp824m8s3s6ps";
rev = "1c4a686e05ef30e4b815d1e3d77507f15efa7e99";
sha256 = "04k78pijr15c21bdf05f4b3w0zmj3fd4572z4qmb3x9r993zznky";
};
meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/";
};
@ -2796,12 +2796,12 @@ final: prev:
luasnip = buildVimPluginFrom2Nix {
pname = "luasnip";
version = "2021-08-09";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "l3mon4d3";
repo = "luasnip";
rev = "453b23f1a170f92f378d974d1c72a2739850a018";
sha256 = "1m1j4g55wzlcflvxf1fci1554ws8g1liihm1qrapccmknpsxcnq6";
rev = "212c037a017a6e4c19d2d704b4c47641c4cb1f5f";
sha256 = "17wmn3i286zc6pyj8vqqq68qq866ynz4bzxbg3wz30xpiqzm308k";
};
meta.homepage = "https://github.com/l3mon4d3/luasnip/";
};
@ -3324,12 +3324,12 @@ final: prev:
neoterm = buildVimPluginFrom2Nix {
pname = "neoterm";
version = "2021-07-23";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "kassio";
repo = "neoterm";
rev = "a626942b2a87a865c73e1d62391ef7e85ddf8bce";
sha256 = "0145gxpaq8zidrsksq1d40y5g3l2f1ac5z9n5p21b32x512d4diz";
rev = "e78179a9ceb98de8d0c37bdda435a5deab4d5e71";
sha256 = "0w962xfcgigdw41wblrv1l55xki0kl5vwkdbm6jlr44hzii0nhgz";
};
meta.homepage = "https://github.com/kassio/neoterm/";
};
@ -3396,12 +3396,12 @@ final: prev:
nerdtree = buildVimPluginFrom2Nix {
pname = "nerdtree";
version = "2021-07-15";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "preservim";
repo = "nerdtree";
rev = "2c14ed0e153cdcd0a1c7d1eabec6820bb6b3f8a2";
sha256 = "0gny5xw4knvjlkgazygpkwy8fk2x8igh45f980ypjghfkiw8h5f8";
rev = "0e71462f90fb4bd09121eeba829512cc24ab5c97";
sha256 = "0q88xrd0zi0wm7rdpggq9gfrlki56w14qr4bg5x1im3p4y6nj7f3";
};
meta.homepage = "https://github.com/preservim/nerdtree/";
};
@ -3528,12 +3528,12 @@ final: prev:
null-ls-nvim = buildVimPluginFrom2Nix {
pname = "null-ls-nvim";
version = "2021-08-11";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "jose-elias-alvarez";
repo = "null-ls.nvim";
rev = "1724d220448a327de92be556e2edb2b3cf2117c1";
sha256 = "0p53pphn03wh1vlscjk4i8bvn36l2xkxm7f83lvy9yb16a8yky29";
rev = "809f33f91f5f2f25bf68b52017d008ec6a1bf6bc";
sha256 = "1d2yfcya0r11qgr3x28fgpgb3wzb5kjf3l5zxr7kqy103xfxcspf";
};
meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/";
};
@ -3576,12 +3576,12 @@ final: prev:
nvim-autopairs = buildVimPluginFrom2Nix {
pname = "nvim-autopairs";
version = "2021-08-11";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "windwp";
repo = "nvim-autopairs";
rev = "d71b3f6060a056dd4d3830b6406fe7143691d631";
sha256 = "0f4w32gpb3n415x4h6fbfi8cvcmxb0mp3vspnga6n2zynvwv9rfq";
rev = "afd3b224a0d508af38270dc87d836fc55b347561";
sha256 = "1xgcp0s9j551l5a573rln1h47xkf9md8gb6wrvwjrxsjkinksl90";
};
meta.homepage = "https://github.com/windwp/nvim-autopairs/";
};
@ -3660,12 +3660,12 @@ final: prev:
nvim-compe = buildVimPluginFrom2Nix {
pname = "nvim-compe";
version = "2021-08-09";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "nvim-compe";
rev = "8ed6999e005015251b6b05cb5c0bfe857785b1d4";
sha256 = "0921vgji6n5hcb3z2cppz2gfbkww71yn7wqvh3wvgrw041ird3af";
rev = "cfbcd727d97958943c0d94e8a8126abe27294ad3";
sha256 = "0znfd451bshqczalw5w4gy2k7fp8630p7vkmfpp1n4gw7z3vchqg";
};
meta.homepage = "https://github.com/hrsh7th/nvim-compe/";
};
@ -3684,12 +3684,12 @@ final: prev:
nvim-dap = buildVimPluginFrom2Nix {
pname = "nvim-dap";
version = "2021-08-11";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "mfussenegger";
repo = "nvim-dap";
rev = "ef5a201caa05eba06f115515f9c4c8897045fe93";
sha256 = "1h6dw1zwz57q4if2akfrwhvhgj0fcf1x5c3cax351sjq9gshx86h";
rev = "7e2906e9f68cce2cab7428af588006795afb40e1";
sha256 = "0yk6l3bb2dqjrc37h8a7115ywmwaa5wvsijjvxx7psy2dlnv583r";
};
meta.homepage = "https://github.com/mfussenegger/nvim-dap/";
};
@ -3718,6 +3718,18 @@ final: prev:
meta.homepage = "https://github.com/theHamsta/nvim-dap-virtual-text/";
};
nvim-expand-expr = buildVimPluginFrom2Nix {
pname = "nvim-expand-expr";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "allendang";
repo = "nvim-expand-expr";
rev = "365cc2a0111228938fb46cffb9cc1a246d787cf0";
sha256 = "1nmklzvvq64dz430gzrbq6qpjrvwwfm09lsw4iiffs9fizjp95if";
};
meta.homepage = "https://github.com/allendang/nvim-expand-expr/";
};
nvim-gdb = buildVimPluginFrom2Nix {
pname = "nvim-gdb";
version = "2021-08-02";
@ -3744,12 +3756,12 @@ final: prev:
nvim-hlslens = buildVimPluginFrom2Nix {
pname = "nvim-hlslens";
version = "2021-08-08";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "kevinhwang91";
repo = "nvim-hlslens";
rev = "d789c9ccba5c83c0fec6aa4e9cdac3803b5550e7";
sha256 = "0wm9axsj9ns00xmiix83b2l6lqm2y7qyh81y851z32im9xjfxixk";
rev = "1e53aeefa949f68214f6b86b4cc4375613d739ca";
sha256 = "1x5w7j01gkyxz86d7rkwxi2mqh5z54cynrrk0pmjkmijshbxs6s8";
};
meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/";
};
@ -3792,12 +3804,12 @@ final: prev:
nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
version = "2021-08-11";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
rev = "d2d6e6251172a78436b7d2730a638e572f04b6ce";
sha256 = "0b146fvcsg5i5x8bqmk9n1gfv9h158b6vss69pp47nr7jf7xfrfd";
rev = "47d80fa334aff1fdf720ebd0f3efb1f19230788c";
sha256 = "04af78i3h5fydy0pr9s9p2m1ahzh3w5gai2q1qk6igqrqcqy16l0";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@ -3852,12 +3864,12 @@ final: prev:
nvim-scrollview = buildVimPluginFrom2Nix {
pname = "nvim-scrollview";
version = "2021-08-01";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "dstein64";
repo = "nvim-scrollview";
rev = "8cba9eee2ae26209a05fb5e511f123677d108c96";
sha256 = "1brbjjjsi8gdzqqba8l0v8n2d5chs396w9mr152iflck6vqfad9c";
rev = "b95d9bb41ed05c146b76a26b76298644b14a043e";
sha256 = "0si733xbiwqpkg10xkicfrcv6v5z38p95589qnf34d2c2n1xy5qs";
};
meta.homepage = "https://github.com/dstein64/nvim-scrollview/";
};
@ -3888,12 +3900,12 @@ final: prev:
nvim-tree-lua = buildVimPluginFrom2Nix {
pname = "nvim-tree-lua";
version = "2021-08-08";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "kyazdani42";
repo = "nvim-tree.lua";
rev = "6175d63eaecdc7d80105825f89a6c9864c4dd432";
sha256 = "0q716l729flcnqkjs98bgjlqpibm8jpknq9h3izcnas2h5bgrmjj";
rev = "d74af818c085e1ffdcf7e9afc101de8cbe3ad883";
sha256 = "1524p6zd3q2bmrik7xbqwlin4pdv566vlr54mxhxpb5lx70yn43w";
};
meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/";
};
@ -4080,24 +4092,24 @@ final: prev:
onedark-nvim = buildVimPluginFrom2Nix {
pname = "onedark-nvim";
version = "2021-07-16";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "olimorris";
repo = "onedark.nvim";
rev = "df80982b43ced71a286933e830b26faabb9a36e9";
sha256 = "1hddmi543js7z77383ppvdray2dri5jn8lcqivk9xm5l8maz52cz";
rev = "6541b3a6e8290fed5aa09034980b2d24f00d75a7";
sha256 = "0nq33b1dir1agm82km0swi2xhr8688s7h6qkml6csix5h3kvvl15";
};
meta.homepage = "https://github.com/olimorris/onedark.nvim/";
};
onedark-vim = buildVimPluginFrom2Nix {
pname = "onedark-vim";
version = "2021-07-12";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "joshdick";
repo = "onedark.vim";
rev = "ee4b22cbae8a3a434fad832bd89a6981c7c061af";
sha256 = "1fz3ly97w0n8viarlqil2q38s6hwd0lzyyi2jvpqsg9bj07dg4k3";
rev = "bd199dfa76cd0ff4abef2a8ad19c44d35552879d";
sha256 = "1xh3ypma3kmn0nb8szq14flfca6ss8k2f1vlnvyapa8dc9i731yy";
};
meta.homepage = "https://github.com/joshdick/onedark.vim/";
};
@ -4248,12 +4260,12 @@ final: prev:
plenary-nvim = buildVimPluginFrom2Nix {
pname = "plenary-nvim";
version = "2021-08-11";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "nvim-lua";
repo = "plenary.nvim";
rev = "adf9d62023e2d39d9d9a2bc550feb3ed7b545d0f";
sha256 = "1h11a0lil14c13v5mdzdmxxqjpqip5fhvjbm34827czb5pz1hvcz";
rev = "0b78fe699b9049b8f46942664027b32102979832";
sha256 = "16ghyvnsqdrfkjb7hawcvwrx56v6llnq4zziw4z1811j4n1v6ypa";
};
meta.homepage = "https://github.com/nvim-lua/plenary.nvim/";
};
@ -4935,12 +4947,12 @@ final: prev:
sql-nvim = buildVimPluginFrom2Nix {
pname = "sql-nvim";
version = "2021-08-11";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "tami5";
repo = "sql.nvim";
rev = "2e53ff98879fcdb41a011f5088bb2bbb070350f1";
sha256 = "176jv5q2bln5gg7smh9f4dd3c2hc6pzskqjjx5pl45hmb4k0akjr";
rev = "957bae51700c7ec0da03ffd03f8f25b966c49ffe";
sha256 = "1v120mr4s012gx95fr99kplv0ggypkjy5br3mzx86k4nmz1djwiv";
};
meta.homepage = "https://github.com/tami5/sql.nvim/";
};
@ -5164,12 +5176,12 @@ final: prev:
taskwiki = buildVimPluginFrom2Nix {
pname = "taskwiki";
version = "2021-06-27";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "tools-life";
repo = "taskwiki";
rev = "f9a1e6ab9f10bd02fab05c225ccca6e253e690a0";
sha256 = "12f1i8dfmd4n3wc4cs45csl6j6aw4g7i6bbqnk017sylwxpiilsq";
rev = "832293f9f797ce56a35be1a9c28ed8ddc3113364";
sha256 = "0568xnfhf7kd31nf0l10rxd5gnp90wph3623wrxrg3al5ix7jy6n";
};
meta.homepage = "https://github.com/tools-life/taskwiki/";
};
@ -5212,12 +5224,12 @@ final: prev:
telescope-fzf-native-nvim = buildVimPluginFrom2Nix {
pname = "telescope-fzf-native-nvim";
version = "2021-08-03";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-fzf-native.nvim";
rev = "2fd60ebe4c372199e0d953310640b1aeaf06166f";
sha256 = "0zs4fs62nbfm6vi0gmi49c3j430g7bzp81p6r4jl9vpqvb7hfpi2";
rev = "9fb0d2d2297f7e313abf33a80331fadf4df716a5";
sha256 = "1dqdh1ay56z9gx2f9qx5zbb8xidn3n6n8lnby7lkmixn3plmbsx0";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/";
};
@ -5261,24 +5273,24 @@ final: prev:
telescope-z-nvim = buildVimPluginFrom2Nix {
pname = "telescope-z-nvim";
version = "2021-07-19";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope-z.nvim";
rev = "f5776dbd0c687af0862b2e4ee83c62c5f4a7271d";
sha256 = "08lcszv53d9mqhgdwkdygbnk5w0pyh0q6djxzqhnjb6qphibf3m6";
rev = "8015020205e702bb62b4077294a59ee445e061f5";
sha256 = "01vjdzjfz7293dwxilihk5qpgf92j59hdq3cl62630vhfxlbc1m0";
};
meta.homepage = "https://github.com/nvim-telescope/telescope-z.nvim/";
};
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope-nvim";
version = "2021-08-11";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
rev = "d4a52ded6767ccda6c29e47332247003ac4c2007";
sha256 = "15d996l9zbd300nrb946nfkw1b39v9qmzm1w2i8p4k11rclm77si";
rev = "f1a27baf279976845eb43c65e99a71d7f0f92d02";
sha256 = "069r1pkg82zj7fm55gk21va2f2x2jmrknfwld5bp0py344gh65n1";
};
meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/";
};
@ -6486,12 +6498,12 @@ final: prev:
vim-devicons = buildVimPluginFrom2Nix {
pname = "vim-devicons";
version = "2021-07-27";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "ryanoasis";
repo = "vim-devicons";
rev = "aa13718e367c44d27a784291a546923eb562fd2a";
sha256 = "0vvdjqickp1c13ixkams6yayqasrz05r6bqqfb4qbwpqmispvwkl";
rev = "0291f0ddfd6d34f5d3dfc272e69408510b53df62";
sha256 = "0c8vzwkf38ldi18g5443wj6v7cgb009cbf6w13qashr6cqazbpga";
};
meta.homepage = "https://github.com/ryanoasis/vim-devicons/";
};
@ -6546,12 +6558,12 @@ final: prev:
vim-dispatch = buildVimPluginFrom2Nix {
pname = "vim-dispatch";
version = "2021-04-17";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-dispatch";
rev = "250ea269e206445d10700b299afd3eb993e939ad";
sha256 = "1fcp2nsgamkxm7x0mn1n3xp02dc7x773cdp9p30ikqn44pzgyq10";
rev = "ed9538655a6ab3e8f48be7c32657ec974242845f";
sha256 = "0zskv8isxg3yfsqw5bzi0n6ywhha63rnah4k6skjycawcb9i8bvv";
};
meta.homepage = "https://github.com/tpope/vim-dispatch/";
};
@ -6930,12 +6942,12 @@ final: prev:
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
version = "2021-08-11";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
rev = "b709d9f782813565be57344538129cf00ea71463";
sha256 = "0r2z1ahkvwsh54lsgm6r1hpj4bl639pazrf9w551zzw8h30najcl";
rev = "f3e92c7721505a59738db15e3e80bc5ccff08e36";
sha256 = "1ciwpk1gxjiay6c304bn2qw1f2cpsy751606l0m2inlscam2pal1";
};
meta.homepage = "https://github.com/tpope/vim-fugitive/";
};
@ -7520,12 +7532,12 @@ final: prev:
vim-jsdoc = buildVimPluginFrom2Nix {
pname = "vim-jsdoc";
version = "2021-05-04";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "heavenshell";
repo = "vim-jsdoc";
rev = "e9e8547a57fa113945047c003d321fbbee770e03";
sha256 = "15j7fb20rz6gndm04ac9lfwrbq9ss5pk9ilxj90rd1dmppvkdkfr";
rev = "46bb2d31329290d36d7af88d89e6b4f8d82c6581";
sha256 = "0q7y661nifkmdqkq5hzbb4r1pz6n32hf2a4ac7x3k1lzcsh1ascq";
};
meta.homepage = "https://github.com/heavenshell/vim-jsdoc/";
};
@ -7580,12 +7592,12 @@ final: prev:
vim-kitty-navigator = buildVimPluginFrom2Nix {
pname = "vim-kitty-navigator";
version = "2021-08-02";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "knubie";
repo = "vim-kitty-navigator";
rev = "68c64c36778dcaca6c94275ffcb703e772aad19f";
sha256 = "0x79w4lm3qfph4s86jdksyb6m1df2w32gp9yg2vqazk4szbcvd8z";
rev = "5d6f5347346291b18e4a1ce769ad6f9cb2c46ba0";
sha256 = "0cv2ppfc847r507v4jrx4z08krgy82i2bkjcqbdmf9k1qmgim00w";
};
meta.homepage = "https://github.com/knubie/vim-kitty-navigator/";
};
@ -7604,11 +7616,11 @@ final: prev:
vim-lastplace = buildVimPluginFrom2Nix {
pname = "vim-lastplace";
version = "2021-03-29";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "farmergreg";
repo = "vim-lastplace";
rev = "8f6c4454eb462776b6ebdc48e3e29a68ddeb726d";
rev = "d522829d810f3254ca09da368a896c962d4a3d61";
sha256 = "04x6y9yp5xlds37bswmrc3xlhhjfln9nzrkippvvhl48b0kfnpj8";
};
meta.homepage = "https://github.com/farmergreg/vim-lastplace/";
@ -9202,12 +9214,12 @@ final: prev:
vim-test = buildVimPluginFrom2Nix {
pname = "vim-test";
version = "2021-07-08";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "vim-test";
repo = "vim-test";
rev = "849d378a499ada59d3326c166d44f0a118e4bdbf";
sha256 = "161a3nh1ggd2ff2d6bllssfds6kcab3z7sckr2q2bbipggl33lkd";
rev = "b980e646e5f91d6e65659737b584e484ef918984";
sha256 = "073lpxmrs41zm0mqxf6pmf88xvkq1fngryl8rp1lcgkrwbl7isg4";
};
meta.homepage = "https://github.com/vim-test/vim-test/";
};
@ -9370,12 +9382,12 @@ final: prev:
vim-tpipeline = buildVimPluginFrom2Nix {
pname = "vim-tpipeline";
version = "2021-08-03";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "vimpostor";
repo = "vim-tpipeline";
rev = "a22d2e53ec38c11fde58e4cf9aab47d89d6600f6";
sha256 = "0axdgfvkamywypylpssmlfj0hh0bf5szcp8xri1g8lqks3f5bkv5";
rev = "2f43d6da23b880375ba53cf55d33b0bc021f6aec";
sha256 = "1gz8dsjqvyma147qmqgbm512rka8wmfhgvxnlz48mh5i8l2i8ypg";
};
meta.homepage = "https://github.com/vimpostor/vim-tpipeline/";
};
@ -9526,12 +9538,12 @@ final: prev:
vim-vsnip = buildVimPluginFrom2Nix {
pname = "vim-vsnip";
version = "2021-07-05";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "hrsh7th";
repo = "vim-vsnip";
rev = "d9d3c2d2942b8e35aedc5c82552913b19958de77";
sha256 = "06hv1rf3br32n6ks5fic8x9c1m32n3wx4pj4xgmy9q58gf95sn2w";
rev = "87d144b7451deb3ab55f1a3e3c5124cfab2b02fa";
sha256 = "17gw992xvxsa6wyirah17xbsdi2gl4lif8ibvbs7dwagnkv01vyb";
};
meta.homepage = "https://github.com/hrsh7th/vim-vsnip/";
};
@ -9658,12 +9670,12 @@ final: prev:
vim-xtabline = buildVimPluginFrom2Nix {
pname = "vim-xtabline";
version = "2021-08-08";
version = "2021-08-13";
src = fetchFromGitHub {
owner = "mg979";
repo = "vim-xtabline";
rev = "da2b4d1094e7771cf2de671ce64bd086da9e8d57";
sha256 = "0p48dzjvjb403dbn641h9p0jhip4dbd6w7r9zf73b3wbd2ym6y38";
rev = "9e1ee818616edc38a52dbc3956a3046393384d05";
sha256 = "0j2z5mkdpfp6wzz7saqnpla0wmsr1c42gvjs0n2i4385phlg93vz";
};
meta.homepage = "https://github.com/mg979/vim-xtabline/";
};
@ -9863,12 +9875,12 @@ final: prev:
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
version = "2021-08-10";
version = "2021-08-12";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
rev = "ae606455d79301f9091c1b6bde0ce87c17512312";
sha256 = "13l4mli0qnsdillsgwc3f2810vy6mc388g54lc519c62yjc2r14h";
rev = "690a95cefcefa5be94dd7783721f510cbb41531a";
sha256 = "0mj942xk9ndxw96vmlw3fs9h1m9vfkln4rva67qnkjqb4v84p30n";
};
meta.homepage = "https://github.com/lervag/vimtex/";
};
@ -9983,12 +9995,12 @@ final: prev:
wilder-nvim = buildVimPluginFrom2Nix {
pname = "wilder-nvim";
version = "2021-08-10";
version = "2021-08-14";
src = fetchFromGitHub {
owner = "gelguy";
repo = "wilder.nvim";
rev = "8f15d62faab17f700798c4eabe75203a9bc4a6d2";
sha256 = "0sicqzlvpiax38l46ccpnlfgsl8bkks9kn9b613v33n50j20bppc";
rev = "e8fab0af94ab3100f83dbfdf147f3807851e47ae";
sha256 = "1ilsfjl6vp69hb1ghnh1v3bxrd0w1c64507v6lcd42ih8mbcbyjw";
};
meta.homepage = "https://github.com/gelguy/wilder.nvim/";
};

View File

@ -65,20 +65,20 @@ class VimEditor(pluginupdate.Editor):
f.write(textwrap.indent(textwrap.dedent(
f"""
{plugin.normalized_name} = buildVimPluginFrom2Nix {{
pname = "{plugin.normalized_name}";
version = "{plugin.version}";
src = fetchFromGitHub {{
owner = "{owner}";
repo = "{repo}";
rev = "{plugin.commit}";
sha256 = "{plugin.sha256}";{submodule_attr}
}};
meta.homepage = "https://github.com/{owner}/{repo}/";
}};
"""
{plugin.normalized_name} = buildVimPluginFrom2Nix {{
pname = "{plugin.normalized_name}";
version = "{plugin.version}";
src = fetchFromGitHub {{
owner = "{owner}";
repo = "{repo}";
rev = "{plugin.commit}";
sha256 = "{plugin.sha256}";{submodule_attr}
}};
meta.homepage = "https://github.com/{owner}/{repo}/";
}};
"""
), ' '))
f.write("\n}")
f.write("\n}\n")
print(f"updated {outfile}")

View File

@ -9,6 +9,7 @@ ajmwagar/vim-deus
akinsho/nvim-bufferline.lua
akinsho/nvim-toggleterm.lua
aklt/plantuml-syntax
allendang/nvim-expand-expr@main
altercation/vim-colors-solarized
alvan/vim-closetag
alx741/vim-hindent

View File

@ -1,19 +1,25 @@
{ lib, fetchzip }:
{ stdenv
, lib
, fetchurl
}:
let
stdenv.mkDerivation rec {
pname = "zd1211-firmware";
version = "1.5";
in fetchzip rec {
name = "${pname}-${version}";
url = "mirror://sourceforge/zd1211/${name}.tar.bz2";
postFetch = ''
tar -xjvf $downloadedFile
src = fetchurl {
url = "mirror://sourceforge/zd1211/${pname}-${version}.tar.bz2";
hash = "sha256-8R04ENf3KDOZf2NFhKWG3M7XGjU/llq/gQYuxDHQKxI=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/lib/firmware/zd1211
cp zd1211-firmware/* $out/lib/firmware/zd1211
'';
cp * $out/lib/firmware/zd1211
sha256 = "0sj2zl3r0549mjz37xy6iilm1hm7ak5ax02gwrn81r5yvphqzd52";
runHook postInstall
'';
meta = {
description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip";

View File

@ -83,6 +83,6 @@ stdenv.mkDerivation rec {
description = "An implementation of the AMQP messaging protocol";
license = licenses.mpl20;
platforms = platforms.unix;
maintainers = with maintainers; [ Profpatsch ];
maintainers = with maintainers; [ ];
};
}

View File

@ -1,27 +1,26 @@
{ fetchFromGitHub, lib, buildGoModule }:
buildGoModule rec {
pname = "dolt";
version = "0.27.3";
pname = "dolt";
version = "0.27.3";
src = fetchFromGitHub {
owner = "liquidata-inc";
repo = "dolt";
rev = "v${version}";
sha256 = "sha256-zqLGvbvl21KNBbESbp9gA8iA1Y6MXwqz3HBZlOYYdIo=";
};
src = fetchFromGitHub {
owner = "liquidata-inc";
repo = "dolt";
rev = "v${version}";
sha256 = "sha256-zqLGvbvl21KNBbESbp9gA8iA1Y6MXwqz3HBZlOYYdIo=";
};
modRoot = "./go";
subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ];
modRoot = "./go";
subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ];
vendorSha256 = "sha256-JVDYSPLemJRD1Gb6rZJdI/0Z5f1a+0TkP1b0IZe/Ns0=";
doCheck = false;
meta = with lib; {
description = "Relational database with version control and CLI a-la Git";
homepage = "https://github.com/liquidata-inc/dolt";
license = licenses.asl20;
maintainers = with maintainers; [ danbst ];
platforms = platforms.linux ++ platforms.darwin;
};
meta = with lib; {
description = "Relational database with version control and CLI a-la Git";
homepage = "https://github.com/liquidata-inc/dolt";
license = licenses.asl20;
maintainers = with maintainers; [ danbst ];
};
}

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "audiowaveform";
version = "1.4.2";
version = "1.5.1";
src = fetchFromGitHub {
owner = "bbc";
repo = "audiowaveform";
rev = version;
sha256 = "0k2s2f2hgq4pnjzfkgvjwgsflihmzdq7shicfjn0z2mzw4d1bvp2";
sha256 = "sha256-WODAgiwZ7UfoukTcujXE5atw/Z03+Vo6aR2jubPwQeU=";
};
nativeBuildInputs = [ cmake gtest ];
@ -16,8 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ boost gd libsndfile libmad libid3tag ];
preConfigure = ''
ln -s ${gtest.src}/googletest googletest
ln -s ${gtest.src}/googlemock googlemock
ln -s ${gtest.src} googletest
'';
# One test is failing, see PR #101947

View File

@ -4,16 +4,16 @@
}:
buildGoModule rec {
pname = "lifecycled";
version = "3.1.0";
version = "3.2.0";
src = fetchFromGitHub {
owner = "buildkite";
repo = "lifecycled";
rev = "v${version}";
sha256 = "F9eovZpwbigP0AMdjAIxULPLDC3zO6GxQmPdt5Xvpkk=";
sha256 = "sha256-+Ts2ERoEZcBdxMXQlxPVtQe3pst5NXWKU3rmS5CgR7A=";
};
vendorSha256 = "q5wYKSLHRzL+UGn29kr8+mUupOPR1zohTscbzjMRCS0=";
vendorSha256 = "sha256-q5wYKSLHRzL+UGn29kr8+mUupOPR1zohTscbzjMRCS0=";
postInstall = ''
mkdir -p $out/lib/systemd/system

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "microplane";
version = "0.0.32";
version = "0.0.33";
src = fetchFromGitHub {
owner = "Clever";
repo = "microplane";
rev = "v${version}";
sha256 = "sha256-QYii/UmYus5hloTUsbVKsw50bSfI4bArUgGzFSK8Cas=";
sha256 = "sha256-Z0/on7u8QemACuHUDfffZm1Bmmo38vAxlSqzsgUQRmg=";
};
vendorSha256 = "sha256-1XtpoGqQ//2ccJdl8E7jnSBQhYoA4/YVBbHeI+OfaR0=";
vendorSha256 = "sha256-PqSjSFTVrIsQ065blIxZ9H/ARku6BEcnjboH+0K0G14=";
buildFlagsArray = ''
-ldflags=-s -w -X main.version=${version}

View File

@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "toybox";
version = "0.8.4";
version = "0.8.5";
src = fetchFromGitHub {
owner = "landley";
repo = pname;
rev = version;
sha256 = "0cgbmv6qk1haj709hjx5q4sl7wgh91i459gzs1203adwc7rvk6jv";
sha256 = "sha256-32LQiPsBjBh5LpRZuaYT+Dr/oETNTQERGqrpwWPhMTo=";
};
depsBuildBuild = [ buildPackages.stdenv.cc ]; # needed for cross

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "burpsuite";
version = "2021.8";
version = "2021.8.1";
src = fetchurl {
name = "burpsuite.jar";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
"https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
"https://web.archive.org/web/https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
];
sha256 = "sha256-IiuwPag4045X9MaXhCNyGhJQi1302ciLfGfNlC0zO0w=";
sha256 = "sha256-R1WV3oaweW4nfszUOtmrfBlbKJm8HDNjwtbj97dFzB0=";
};
dontUnpack = true;

View File

@ -5,13 +5,13 @@
buildGoModule rec {
pname = "ipinfo";
version = "2.0.1";
version = "2.0.2";
src = fetchFromGitHub {
owner = pname;
repo = "cli";
rev = "${pname}-${version}";
sha256 = "00rqqkybvzxcpa6fy799fxmn95xqx7s3z3mqfryzi35dlmjdfzqy";
sha256 = "05448p3bp01l5wyhl94023ywxxkmanm4gp4sdz1b71xicy2fnsmz";
};
vendorSha256 = null;

View File

@ -0,0 +1,30 @@
{ buildPythonApplication
, fetchPypi
, lib
, python-gnupg
}:
buildPythonApplication rec {
pname = "pass2csv";
version = "0.3.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-qY094A5F7W2exGcsS9AJuO5RrBcAn0cCrJquOc6zGZM=";
};
propagatedBuildInputs = [
python-gnupg
];
# Project has no tests.
doCheck = false;
meta = with lib; {
description = "Export pass(1), \"the standard unix password manager\", to CSV";
homepage = "https://github.com/reinefjord/pass2csv";
license = licenses.mit;
maintainers = with maintainers; [ wolfangaukang ];
};
}

View File

@ -12,17 +12,17 @@
let
# specVersion taken from: https://www.linode.com/docs/api/openapi.yaml at `info.version`.
specVersion = "4.99.0";
specVersion = "4.101.0";
spec = fetchurl {
url = "https://raw.githubusercontent.com/linode/linode-api-docs/v${specVersion}/openapi.yaml";
sha256 = "10z63a2clbiskdnmnyf4m8v2hgc4bdm703y7s2dpw0q09msx9aca";
sha256 = "1l4xi82b2pvkj7p1bq26ax2ava5vnv324j5sw3hvkkqqf1fmpdl5";
};
in
buildPythonApplication rec {
pname = "linode-cli";
version = "5.5.2";
version = "5.6.0";
src = fetchFromGitHub {
owner = "linode";

View File

@ -18037,7 +18037,6 @@ with pkgs;
openvdb = callPackage ../development/libraries/openvdb {};
inherit (callPackages ../development/libraries/libressl { })
libressl_3_1
libressl_3_2;
# Please keep this pointed to the latest version. See also
@ -24566,6 +24565,8 @@ with pkgs;
musikcube = callPackage ../applications/audio/musikcube {};
pass2csv = python3Packages.callPackage ../tools/security/pass2csv {};
pass-secret-service = callPackage ../applications/misc/pass-secret-service { };
pinboard = with python3Packages; toPythonApplication pinboard;

View File

@ -7307,6 +7307,8 @@ in {
pyturbojpeg = callPackage ../development/python-modules/pyturbojpeg { };
pytwitchapi = callPackage ../development/python-modules/pytwitchapi { };
pytz = callPackage ../development/python-modules/pytz { };
pytzdata = callPackage ../development/python-modules/pytzdata { };