Merge staging-next into staging

This commit is contained in:
github-actions[bot] 2022-03-22 06:01:42 +00:00 committed by GitHub
commit c62314becb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
65 changed files with 404 additions and 313 deletions

View File

@ -51,7 +51,9 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
$n++; $n++;
$rootDir = $ARGV[$n]; $rootDir = $ARGV[$n];
die "$0: --root requires an argument\n" unless defined $rootDir; die "$0: --root requires an argument\n" unless defined $rootDir;
die "$0: no need to specify `/` with `--root`, it is the default\n" if $rootDir eq "/";
$rootDir =~ s/\/*$//; # remove trailing slashes $rootDir =~ s/\/*$//; # remove trailing slashes
$rootDir = File::Spec->rel2abs($rootDir); # resolve absolute path
} }
elsif ($arg eq "--force") { elsif ($arg eq "--force") {
$force = 1; $force = 1;
@ -616,7 +618,12 @@ EOF
if ($showHardwareConfig) { if ($showHardwareConfig) {
print STDOUT $hwConfig; print STDOUT $hwConfig;
} else { } else {
$outDir = "$rootDir$outDir"; if ($outDir eq "/etc/nixos") {
$outDir = "$rootDir$outDir";
} else {
$outDir = File::Spec->rel2abs($outDir);
$outDir =~ s/\/*$//; # remove trailing slashes
}
my $fn = "$outDir/hardware-configuration.nix"; my $fn = "$outDir/hardware-configuration.nix";
print STDERR "writing $fn...\n"; print STDERR "writing $fn...\n";

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, pkg-config, linkFarm, lightdm-enso-os-greeter { lib, stdenv, fetchFromGitHub, pkg-config, linkFarm, lightdm-enso-os-greeter
, dbus, pcre, libepoxy, libXdmcp, at-spi2-core, libxklavier, libxkbcommon, libpthreadstubs , dbus, pcre, libepoxy, libXdmcp, at-spi2-core, libxklavier, libxkbcommon, libpthreadstubs
, gtk3, vala, cmake, libgee, libX11, lightdm, gdk-pixbuf, clutter-gtk, wrapGAppsHook, librsvg }: , gtk3, vala, cmake, libgee, libX11, lightdm, gdk-pixbuf, clutter-gtk, wrapGAppsHook, librsvg }:
@ -6,10 +6,11 @@ stdenv.mkDerivation {
version = "0.2.1"; version = "0.2.1";
pname = "lightdm-enso-os-greeter"; pname = "lightdm-enso-os-greeter";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/nick92/Enso-OS"; owner = "nick92";
repo = "Enso-OS";
rev = "ed48330bfd986072bd82ac542ed8f8a7365c6427"; rev = "ed48330bfd986072bd82ac542ed8f8a7365c6427";
sha256 = "11jm181jq1vbn83h235avpdxz7pqq6prqyzki5yryy53mkj4kgxz"; sha256 = "sha256-v79J5KyjeJ99ifN7nK/B+J7f292qDAEHsmsHLAMKVYY=";
}; };
patches = [ patches = [

View File

@ -1,11 +1,12 @@
let let
pkgs = import ../../../../.. { }; pkgs = import ../../../../.. { };
src = pkgs.fetchgit { src = pkgs.fetchFromGitHub {
url = "https://github.com/nix-community/emacs2nix.git"; owner = "nix-community";
fetchSubmodules = true; repo = "emacs2nix";
rev = "2e8d2c644397be57455ad32c2849f692eeac7797"; rev = "2e8d2c644397be57455ad32c2849f692eeac7797";
sha256 = "sha256-qnOYDYHAQ+r5eegKP9GqHz5R2ig96B2W7M+uYa1ti9M="; sha256 = "sha256-qnOYDYHAQ+r5eegKP9GqHz5R2ig96B2W7M+uYa1ti9M=";
fetchSubmodules = true;
}; };
in in
pkgs.mkShell { pkgs.mkShell {

View File

@ -1,9 +1,15 @@
{ lib, buildGoPackage, fetchgit }: { lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
pname = "mop"; pname = "mop";
version = "0.2.0"; version = "0.2.0";
rev = "bc666ec165d08b43134f7ec0bf29083ad5466243";
src = fetchFromGitHub {
owner = "mop-tracker";
repo = "mop";
rev = "bc666ec165d08b43134f7ec0bf29083ad5466243";
sha256 = "sha256-fX7G4M3gfv31Eb2HChTY4RfVF2U92000U4ZnFNML5X4=";
};
goPackagePath = "github.com/michaeldv/mop"; goPackagePath = "github.com/michaeldv/mop";
goDeps = ./deps.nix; goDeps = ./deps.nix;
@ -16,12 +22,6 @@ buildGoPackage rec {
mv cmd mop mv cmd mop
''; '';
src = fetchgit {
inherit rev;
url = "https://github.com/mop-tracker/mop";
sha256 = "0zp51g9i8rw6acs4vnrxclbxa5z1v0a0m1xx27szszp0rphcczkx";
};
meta = with lib; { meta = with lib; {
description = "Simple stock tracker implemented in go"; description = "Simple stock tracker implemented in go";
homepage = "https://github.com/mop-tracker/mop"; homepage = "https://github.com/mop-tracker/mop";

View File

@ -0,0 +1,25 @@
From b2935ed7e2962d73f3b493c38c0bb1e8659c0a60 Mon Sep 17 00:00:00 2001
From: toonn <toonn@toonn.io>
Date: Tue, 8 Mar 2022 23:59:19 +0100
Subject: [PATCH 1/2] Use command -v in favor of which
---
Makerules | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makerules b/Makerules
index 0fdaecb..6d52cca 100644
--- a/Makerules
+++ b/Makerules
@@ -145,7 +145,7 @@ else ifeq ($(OS),MACOS)
LD = xcrun ld
RANLIB = xcrun ranlib
- ifeq (, $(shell which pkg-config))
+ ifeq (, $(shell command -v pkg-config))
$(warning "No pkg-config found, install it for proper integration of libcrypto")
else
HAVE_LIBCRYPTO := $(shell pkg-config --exists 'libcrypto >= 1.1.0' && echo yes)
--
2.17.2 (Apple Git-113)

View File

@ -0,0 +1,57 @@
From 0f0ccfc01cfe72d96eafee57ec6c5107f09c7238 Mon Sep 17 00:00:00 2001
From: toonn <toonn@toonn.io>
Date: Wed, 9 Mar 2022 00:08:28 +0100
Subject: [PATCH 2/2] Add Darwin deps
---
Makerules | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/Makerules b/Makerules
index 6d52cca..a6bd0ed 100644
--- a/Makerules
+++ b/Makerules
@@ -153,6 +153,40 @@ else ifeq ($(OS),MACOS)
LIBCRYPTO_CFLAGS := $(shell pkg-config --cflags libcrypto) -DHAVE_LIBCRYPTO
LIBCRYPTO_LIBS := $(shell pkg-config --libs libcrypto)
endif
+ # Required for mupdf-gl
+ ifeq ($(shell pkg-config --exists harfbuzz && echo yes),yes)
+ SYS_HARFBUZZ_CFLAGS := $(shell pkg-config --cflags harfbuzz)
+ SYS_HARFBUZZ_LIBS := $(shell pkg-config --libs harfbuzz)
+ endif
+ ifeq ($(shell pkg-config --exists libopenjp2 && echo yes),yes)
+ SYS_OPENJPEG_CFLAGS := $(shell pkg-config --cflags libopenjp2)
+ SYS_OPENJPEG_LIBS := $(shell pkg-config --libs libopenjp2)
+ endif
+ ifeq ($(shell pkg-config --exists freetype2 && echo yes),yes)
+ SYS_FREETYPE_CFLAGS := $(shell pkg-config --cflags freetype2)
+ SYS_FREETYPE_LIBS := $(shell pkg-config --libs freetype2)
+ endif
+ ifeq ($(shell pkg-config --exists gumbo && echo yes),yes)
+ SYS_GUMBO_CFLAGS := $(shell pkg-config --cflags gumbo)
+ SYS_GUMBO_LIBS := $(shell pkg-config --libs gumbo)
+ endif
+ # Required for mupdf-x11
+ HAVE_X11 := $(shell pkg-config --exists x11 xext && echo yes)
+ ifeq ($(HAVE_X11),yes)
+ X11_CFLAGS := $(shell pkg-config --cflags x11 xext)
+ X11_LIBS := $(shell pkg-config --libs x11 xext)
+ endif
+ # Required for mupdf-x11-curl
+ HAVE_SYS_CURL := $(shell pkg-config --exists libcurl && echo yes)
+ ifeq ($(HAVE_SYS_CURL),yes)
+ SYS_CURL_CFLAGS := $(shell pkg-config --cflags libcurl)
+ SYS_CURL_LIBS := $(shell pkg-config --libs libcurl)
+ endif
+ HAVE_PTHREAD := yes
+ ifeq ($(HAVE_PTHREAD),yes)
+ PTHREAD_CFLAGS :=
+ PTHREAD_LIBS := -lpthread
+ endif
endif
else ifeq ($(OS),Linux)
--
2.17.2 (Apple Git-113)

View File

@ -2,6 +2,7 @@
, lib , lib
, fetchurl , fetchurl
, fetchpatch , fetchpatch
, desktopToDarwinBundle
, pkg-config , pkg-config
, freetype , freetype
, harfbuzz , harfbuzz
@ -10,7 +11,7 @@
, libjpeg , libjpeg
, darwin , darwin
, gumbo , gumbo
, enableX11 ? true , enableX11 ? (!stdenv.isDarwin)
, libX11 , libX11
, libXext , libXext
, libXi , libXi
@ -21,6 +22,7 @@
, enableGL ? true , enableGL ? true
, freeglut , freeglut
, libGLU , libGLU
, xcbuild
}: }:
let let
@ -39,6 +41,10 @@ stdenv.mkDerivation rec {
sha256 = "1vfyhlqq1a0k0drcggly4bgsjasmf6lmpfbdi5xcrwdbzkagrbr1"; sha256 = "1vfyhlqq1a0k0drcggly4bgsjasmf6lmpfbdi5xcrwdbzkagrbr1";
}; };
patches = [ ./0001-Use-command-v-in-favor-of-which.patch
./0002-Add-Darwin-deps.patch
];
postPatch = '' postPatch = ''
sed -i "s/__OPENJPEG__VERSION__/${openJpegVersion}/" source/fitz/load-jpx.c sed -i "s/__OPENJPEG__VERSION__/${openJpegVersion}/" source/fitz/load-jpx.c
''; '';
@ -50,8 +56,11 @@ stdenv.mkDerivation rec {
++ lib.optionals (!enableX11) [ "HAVE_X11=no" ] ++ lib.optionals (!enableX11) [ "HAVE_X11=no" ]
++ lib.optionals (!enableGL) [ "HAVE_GLUT=no" ]; ++ lib.optionals (!enableGL) [ "HAVE_GLUT=no" ];
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs =
[ pkg-config ] ++ lib.optional stdenv.isDarwin desktopToDarwinBundle;
buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg gumbo ] buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg gumbo ]
++ lib.optional stdenv.isDarwin xcbuild
++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ] ++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ]
++ lib.optionals enableCurl [ curl openssl ] ++ lib.optionals enableCurl [ curl openssl ]
++ lib.optionals enableGL ( ++ lib.optionals enableGL (

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, electron, runtimeShell } : { lib, stdenv, fetchFromGitHub, electron, runtimeShell } :
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "nix-tour"; pname = "nix-tour";
@ -6,10 +6,11 @@ stdenv.mkDerivation rec {
buildInputs = [ electron ]; buildInputs = [ electron ];
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/nixcloud/tour_of_nix"; owner = "nixcloud";
repo = "tour_of_nix";
rev = "v${version}"; rev = "v${version}";
sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb"; sha256 = "sha256-a/P2ZMc9OpM4PxRFklSO6oVCc96AGWkxtGF/EmnfYSU=";
}; };
installPhase = '' installPhase = ''

View File

@ -1,13 +1,14 @@
{ lib, stdenv, fetchgit, qt4, qmake4Hook, trousers }: { lib, stdenv, fetchFromGitHub, qt4, qmake4Hook, trousers }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.8.1"; version = "0.8.1";
pname = "tpmmanager"; pname = "tpmmanager";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/Sirrix-AG/TPMManager"; owner = "Rohde-Schwarz";
rev = "9f989206635a6d2c1342576c90fa73eb239519cd"; repo = "TPMManager";
sha256 = "24a606f88fed67ed0d0e61dc220295e9e1ab8db3ef3d028fa34b04ff30652d8e"; rev = "v${version}";
sha256 = "sha256-JKYG+I/tZ+0NDmHcIgKV6eGrjbPvPQKPo0sE/zBlLY4=";
}; };
nativeBuildInputs = [ qmake4Hook ]; nativeBuildInputs = [ qmake4Hook ];

View File

@ -1,13 +1,14 @@
{ lib, fetchgit { lib, fetchFromGitHub
, buildPythonApplication, buildPythonPackage , buildPythonApplication, buildPythonPackage
, pygobject3, pytest-runner, requests, responses, pytest, python-olm , pygobject3, pytest-runner, requests, responses, pytest, python-olm
, canonicaljson, olm , canonicaljson, olm
}: }:
let let
mainsrc = fetchgit { mainsrc = fetchFromGitHub {
url = "https://github.com/saadnpq/matrixcli"; owner = "saadnpq";
repo = "matrixcli";
rev = "61ebde173ca2f77185c261c2b7f6db297ca89863"; rev = "61ebde173ca2f77185c261c2b7f6db297ca89863";
sha256 = "0xcjjy2xwlcixr9fwgzcfjjkivqpk104h7dslfa7lz9jq9pzqzvq"; sha256 = "sha256-eH/8b8IyfXqUo7odSECYF+84pXTsP+5S7pFR3oWXknU=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -35,7 +36,6 @@ let
in in
buildPythonApplication rec { buildPythonApplication rec {
name = "${pname}-${version}";
pname = "matrixcli"; pname = "matrixcli";
version = "0.0.2019-08-15"; version = "0.0.2019-08-15";

View File

@ -1,16 +1,14 @@
{ lib, stdenv, fetchgit, pkg-config, pidgin } : { lib, stdenv, fetchFromGitHub, pkg-config, pidgin } :
let stdenv.mkDerivation rec {
version = "54b2992";
in
stdenv.mkDerivation {
pname = "pidgin-mra"; pname = "pidgin-mra";
inherit version; version = "unstable-2014-07-08";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/dreadatour/pidgin-mra"; owner = "dreadatour";
rev = version; repo = "pidgin-mra";
sha256 = "1adq57g11kw7bfpivyvfk3nlpjkc8raiw4bzn3gn4nx3m0wl99vw"; rev = "54b299266265cde800289b2d51f13b81f6bf379c";
sha256 = "sha256-fKdEOaijW2LfsH8RHlVGbMpL7Zhu+x2vW4fPEN4puKk=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];

View File

@ -1,16 +1,14 @@
{ lib, stdenv, fetchgit, pkg-config, pidgin, libwebp, libgcrypt, gettext } : { lib, stdenv, fetchFromGitHub, pkg-config, pidgin, libwebp, libgcrypt, gettext } :
let
version = "1.3.1";
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "telegram-purple"; pname = "telegram-purple";
inherit version; version = "1.3.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/majn/telegram-purple"; owner = "majn";
repo = "telegram-purple";
rev = "v${version}"; rev = "v${version}";
sha256 = "0p93jpjpx7hszwffzgixw04zkrpsiyzz4za3gfr4j07krc4771fp"; sha256 = "sha256-14VzCMvzAEmye0N98r+P+ub5CeA9vu8c/xqefuWVI10=";
}; };
NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type"; NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type";

View File

@ -1,20 +1,20 @@
{ lib, stdenv, buildGoPackage, trousers, dclxvi, wrapGAppsHook, pkg-config, gtk3, gtkspell3, { lib, stdenv, buildGoPackage, trousers, dclxvi, wrapGAppsHook, pkg-config, gtk3, gtkspell3,
fetchgit }: fetchFromGitHub }:
let let
gui = true; # Might be implemented with nixpkgs config. gui = true; # Might be implemented with nixpkgs config.
in in
buildGoPackage rec { buildGoPackage rec {
pname = "pond"; pname = "pond";
version = "20150830-${lib.strings.substring 0 7 rev}"; version = "unstable-2015-08-30";
rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2";
goPackagePath = "github.com/agl/pond"; goPackagePath = "github.com/agl/pond";
src = fetchgit { src = fetchFromGitHub {
inherit rev; owner = "agl";
url = "https://github.com/agl/pond"; repo = "pond";
sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2";
sha256 = "sha256-BE7+146E9hz8enrfA+sQhtqgHiSZAtjrW1OOqchbr7Y=";
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;

View File

@ -2,7 +2,7 @@
, element-desktop # for seshat and keytar , element-desktop # for seshat and keytar
, schildichat-web , schildichat-web
, stdenv , stdenv
, fetchgit , fetchFromGitHub
, makeWrapper , makeWrapper
, makeDesktopItem , makeDesktopItem
, copyDesktopItems , copyDesktopItems
@ -25,8 +25,9 @@ stdenv.mkDerivation rec {
pname = "schildichat-desktop"; pname = "schildichat-desktop";
inherit (pinData) version; inherit (pinData) version;
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/SchildiChat/schildichat-desktop/"; owner = "SchildiChat";
repo = "schildichat-desktop";
inherit (pinData) rev; inherit (pinData) rev;
sha256 = pinData.srcHash; sha256 = pinData.srcHash;
fetchSubmodules = true; fetchSubmodules = true;

View File

@ -1,5 +1,5 @@
{ stdenv, lib { stdenv, lib
, fetchgit , fetchFromGitHub
, fetchYarnDeps , fetchYarnDeps
, nodejs , nodejs
, yarn , yarn
@ -18,8 +18,9 @@ in stdenv.mkDerivation rec {
pname = "schildichat-web"; pname = "schildichat-web";
inherit (pinData) version; inherit (pinData) version;
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/SchildiChat/schildichat-desktop/"; owner = "SchildiChat";
repo = "schildichat-desktop";
inherit (pinData) rev; inherit (pinData) rev;
sha256 = pinData.srcHash; sha256 = pinData.srcHash;
fetchSubmodules = true; fetchSubmodules = true;

View File

@ -1,7 +1,7 @@
{ mkDerivation { mkDerivation
, lib , lib
, stdenv , stdenv
, fetchgit , fetchFromGitHub
, qtbase , qtbase
, qtquickcontrols , qtquickcontrols
, qmake , qmake
@ -15,10 +15,11 @@ mkDerivation rec {
pname = "tensor"; pname = "tensor";
version = "unstable-2017-02-21"; version = "unstable-2017-02-21";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/davidar/tensor.git"; owner = "davidar";
repo = "tensor";
rev = "f3f3056d770d7fb4a21c610cee7936ee900569f5"; rev = "f3f3056d770d7fb4a21c610cee7936ee900569f5";
sha256 = "19in8c7a2hxsx2c4lj540w5c3pn1882645m21l91mcriynqr67k9"; sha256 = "sha256-aR6TsfUxsxoSDaIWYgRCwd7BCgekSEqY6LpDoQ5DNqY=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@ -1,13 +1,14 @@
{ fetchgit, libcommuni, qtbase, qmake, lib, stdenv, wrapQtAppsHook }: { fetchFromGitHub, libcommuni, qtbase, qmake, lib, stdenv, wrapQtAppsHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "communi"; pname = "communi";
version = "3.5.0"; version = "3.5.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/communi/communi-desktop.git"; owner = "communi";
repo = "communi-desktop";
rev = "v${version}"; rev = "v${version}";
sha256 = "10grskhczh8601s90ikdsbjabgr9ypcp2j7vivjkl456rmg6xbji"; sha256 = "sha256-Ua5uXs2mEDrljvtIcdn1Kb+l5NJtRpB0AAbBz+DU+YE=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@ -1,35 +1,32 @@
{ lib, stdenv, fetchgit, sqlite, wxGTK30, gettext, wrapGAppsHook }: { lib, stdenv, fetchFromGitHub, sqlite, wxGTK30, gettext, wrapGAppsHook }:
stdenv.mkDerivation rec {
let pname = "money-manager-ex";
version = "1.3.3"; version = "1.3.3";
in
stdenv.mkDerivation {
pname = "money-manager-ex";
inherit version;
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/moneymanagerex/moneymanagerex.git"; owner = "moneymanagerex";
rev = "refs/tags/v${version}"; repo = "moneymanagerex";
sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74"; rev = "refs/tags/v${version}";
}; sha256 = "sha256-5NgkP9gY4eDBoKSC/IaXiHoiz+ZdU4c/iGAzPf5IlmQ=";
};
nativeBuildInputs = [ nativeBuildInputs = [
wrapGAppsHook wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
gettext gettext
sqlite sqlite
wxGTK30 wxGTK30
wxGTK30.gtk wxGTK30.gtk
]; ];
meta = { meta = {
description = "Easy-to-use personal finance software"; description = "Easy-to-use personal finance software";
homepage = "https://www.moneymanagerex.org/"; homepage = "https://www.moneymanagerex.org/";
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [viric]; maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux; platforms = with lib.platforms; linux;
}; };
} }

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, fetchFromGitHub, cmake { lib, stdenv, fetchFromGitHub, cmake
, fetchpatch , fetchpatch
, openblas, blas, lapack, opencv3, libzip, boost, protobuf, mpi , openblas, blas, lapack, opencv3, libzip, boost, protobuf, mpi
, onebitSGDSupport ? false , onebitSGDSupport ? false
@ -22,11 +22,12 @@ in stdenv.mkDerivation rec {
pname = "CNTK"; pname = "CNTK";
version = "2.7"; version = "2.7";
# Submodules src = fetchFromGitHub {
src = fetchgit { owner = "Microsoft";
url = "https://github.com/Microsoft/CNTK"; repo = "CNTK";
rev = "v${version}"; rev = "v${version}";
sha256 = "18l9k7s966a26ywcf7flqyhm61788pcb9fj3wk61jrmgkhy2pcns"; sha256 = "sha256-2rIrPJyvZhnM5EO6tNhF6ARTocfUHce4N0IZk/SZiaI=";
fetchSubmodules = true;
}; };
patches = [ patches = [

View File

@ -1,16 +1,16 @@
{ lib, buildGoPackage, fetchgit }: { lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
pname = "git-annex-remote-b2"; pname = "git-annex-remote-b2";
version = "20151212-${lib.strings.substring 0 7 rev}"; version = "unstable-2015-12-12";
rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba";
goPackagePath = "github.com/encryptio/git-annex-remote-b2"; goPackagePath = "github.com/encryptio/git-annex-remote-b2";
src = fetchgit { src = fetchFromGitHub {
inherit rev; owner = "encryptio";
url = "https://github.com/encryptio/git-annex-remote-b2"; repo = "git-annex-remote-b2";
sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba";
sha256 = "sha256-QhotoSdCpiuDyMARW5jExP2887XRMaaxVXBIutvPaYQ=";
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;

View File

@ -1,11 +1,12 @@
{ lib, stdenv, fetchgit, dtc, fetchpatch, pkgsCross }: { lib, stdenv, fetchFromGitHub, dtc, fetchpatch, pkgsCross }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "spike"; pname = "spike";
version = "1.0.0"; version = "1.0.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/riscv/riscv-isa-sim.git"; owner = "riscv";
repo = "riscv-isa-sim";
rev = "v${version}"; rev = "v${version}";
sha256 = "1hcl01nj96s3rkz4mrq747s5lkw81lgdjdimb8b1b9h8qnida7ww"; sha256 = "1hcl01nj96s3rkz4mrq747s5lkw81lgdjdimb8b1b9h8qnida7ww";
}; };

View File

@ -1,5 +1,4 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1 { lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoPackage, fetchgit }:
buildGoPackage rec { buildGoPackage rec {
pname = "btops"; pname = "btops";
@ -7,10 +6,11 @@ buildGoPackage rec {
goPackagePath = "github.com/cmschuetz/btops"; goPackagePath = "github.com/cmschuetz/btops";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/cmschuetz/btops.git"; owner = "cmschuetz";
repo = "btops";
rev = version; rev = version;
sha256 = "1ilidvpy7gz49zqp6rf0q7wjrc3r0brdrcp4r5f6i6p9cwybqkbq"; sha256 = "sha256-eE28PGfpmmhcyeSy3PICebAs+cHAZXPxT+S/4+9ukcY=";
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;

View File

@ -1,13 +1,14 @@
{ lib, stdenv, fetchgit, fontforge, python3 }: { lib, stdenv, fetchFromGitHub, fontforge, python3 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "rictydiminished-with-firacode"; pname = "rictydiminished-with-firacode";
version = "1.2.2"; version = "1.2.2";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/hakatashi/RictyDiminished-with-FiraCode.git"; owner = "hakatashi";
repo = "RictyDiminished-with-FiraCode";
rev = version; rev = version;
sha256 = "0khnbp1y5xrd77gfb2b19mzi3ll07im3d0rlbciwbq0cn347f25p"; sha256 = "sha256-twh3yLAM4MUjWzSDNmo8gNIRf01hieXeOS334sNdFk4=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@ -1,13 +1,14 @@
{ stdenv, lib, fetchgit, chez, chez-srfi }: { stdenv, lib, fetchFromGitHub, chez, chez-srfi }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "chez-mit"; pname = "chez-mit";
version = "1.0"; version = "0.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/fedeinthemix/chez-mit.git"; owner = "fedeinthemix";
rev = "68f3d7562e77f694847dc74dabb5ecbd106cd6be"; repo = "chez-mit";
sha256 = "0c7i3b6i90xk96nmxn1pc9272a4yal4v40dm1a4ybdi87x53zkk0"; rev = "v${version}";
sha256 = "sha256-YM4/Sj8otuWJCrUBsglVnihxRGI32F6tSbODFM0a8TA=";
}; };
buildInputs = [ chez chez-srfi ]; buildInputs = [ chez chez-srfi ];

View File

@ -1,13 +1,14 @@
{ stdenv, lib, fetchgit, chez, chez-srfi, chez-mit }: { stdenv, lib, fetchFromGitHub, chez, chez-srfi, chez-mit }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "chez-scmutils"; pname = "chez-scmutils";
version = "1.0"; version = "0.1";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/fedeinthemix/chez-scmutils.git"; owner = "fedeinthemix";
rev = "5eaeea6289fd239358d7eed99cc9588528fb52b2"; repo = "chez-scmutils";
sha256 = "0lb05wlf8qpgg8y0gdsyaxg1nbfx1qbaqdjvygrp64ndn8fnhq7l"; rev = "v${version}";
sha256 = "sha256-9GBoHbLNEnPz81s2rBYO3S0bXldetwc8eu9i5CgvYFE=";
}; };
buildInputs = [ chez chez-srfi chez-mit ]; buildInputs = [ chez chez-srfi chez-mit ];

View File

@ -1,13 +1,14 @@
{ stdenv, lib, fetchgit, chez }: { stdenv, lib, fetchFromGitHub, chez }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "chez-srfi"; pname = "chez-srfi";
version = "1.0"; version = "1.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/fedeinthemix/chez-srfi.git"; owner = "fedeinthemix";
repo = "chez-srfi";
rev = "5770486c2a85d0e3dd4ac62a97918e7c394ea507"; rev = "5770486c2a85d0e3dd4ac62a97918e7c394ea507";
sha256 = "1s47v7b7w0ycd2g6gyv8qbzmh4jjln5iday8n9l3m996ns8is9zj"; sha256 = "sha256-8icdkbYmpTpossirFoulUhJY/8Jo+2eeaMwDftbZh+g=";
}; };
buildInputs = [ chez ]; buildInputs = [ chez ];

View File

@ -1,14 +1,15 @@
{ fetchgit, lib, stdenv, gmp, which, flex, bison, makeWrapper { fetchFromGitHub, lib, stdenv, gmp, which, flex, bison, makeWrapper
, autoconf, automake, libtool, jdk, perl }: , autoconf, automake, libtool, jdk, perl }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "aldor"; pname = "aldor";
version = "1.2.0"; version = "1.2.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/pippijn/aldor"; owner = "aldorlang";
sha256 = "19v07ffq4r1gjnmg7a8ifgjkwan9a3rwbj0qjz8fycwy221844m6"; repo = "aldor";
rev = "15471e75f3d65b93150f414ebcaf59a03054b68d"; rev = "15471e75f3d65b93150f414ebcaf59a03054b68d";
sha256 = "sha256-phKCghCeM+/QlxjIxfNQySo+5XMRqfOqlS9kgp07YKc=";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];

View File

@ -78,11 +78,11 @@ let
pname = "nim-bootstrap"; pname = "nim-bootstrap";
version = "g${lib.substring 0 7 revision}"; version = "g${lib.substring 0 7 revision}";
src = fetchgit { src = fetchFromGitHub {
# A Git checkout is much smaller than a GitHub tarball. owner = "nim-lang";
url = "https://github.com/nim-lang/csources_v1.git"; repo = "csources_v1";
rev = revision; rev = revision;
sha256 = "1c2k681knrha1zmf4abhb32i2wwd3nwflzylnqryxk753swla043"; sha256 = "sha256-gwBFuR7lzO4zttR/6rgdjXMRxVhwKeLqDwpmOwMyU7A=";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;

View File

@ -1,14 +1,15 @@
# Build Open Dylan from source using the binary builds to bootstrap. # Build Open Dylan from source using the binary builds to bootstrap.
{lib, stdenv, fetchgit, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }: {lib, stdenv, fetchFromGitHub, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "opendylan"; pname = "opendylan";
version = "2016.1pre"; version = "2016.1pre";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/dylan-lang/opendylan"; owner = "dylan-lang";
repo = "opendylan";
rev = "cd9a8395586d33cc43a8611c1dc0513e69ee82dd"; rev = "cd9a8395586d33cc43a8611c1dc0513e69ee82dd";
sha256 = "00r1dm7mjy5p4hfm13vc4b6qryap40zinia3y15rhvalc3i2np4b"; sha256 = "sha256-i1wr4mBUbZhL8ENFGz8gV/mMzSJsj1AdJLd4WU9tIQM=";
fetchSubmodules = true; fetchSubmodules = true;
}; };

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, wxGTK, libX11, readline }: { lib, stdenv, fetchFromGitHub, wxGTK, libX11, readline }:
let let
# BOSSA needs a "bin2c" program to embed images. # BOSSA needs a "bin2c" program to embed images.
@ -13,14 +13,15 @@ let
}; };
in in
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "bossa"; pname = "bossa";
version = "1.8"; version = "1.8";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/shumatech/BOSSA"; owner = "shumatech";
rev = "3be622ca0aa6214a2fc51c1ec682c4a58a423d62"; repo = "BOSSA";
sha256 = "19ik86qbffcb04cgmi4mnascbkck4ynfj87ha65qdk6fmp5q35vm"; rev = version;
sha256 = "sha256-dZeBy63OzIaLUfAg6awnk83FtLKVxPoYAYs5t7BBM6Y=";
}; };
patches = [ ./bossa-no-applet-build.patch ]; patches = [ ./bossa-no-applet-build.patch ];

View File

@ -1,13 +1,15 @@
{ lib, stdenv, fetchgit, mlton }: { lib, stdenv, fetchFromGitHub, mlton }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "ceptre"; pname = "ceptre";
version = "unstable-2016-11-27"; version = "unstable-2016-11-27";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/chrisamaphone/interactive-lp"; owner = "chrisamaphone";
repo = "interactive-lp";
rev = "e436fda2ccd44e9c9d226feced9d204311deacf5"; rev = "e436fda2ccd44e9c9d226feced9d204311deacf5";
sha256 = "174pxfnw3qyn2w8qxmx45fa68iddf106mkfi0kcmyqxzsc9jprh8"; sha256 = "sha256-COYrE9O/Y1/ZBNHNakBwrUVklCuk144RF9bjwa3rl5w=";
fetchSubmodules = true;
}; };
nativeBuildInputs = [ mlton ]; nativeBuildInputs = [ mlton ];

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, fetchurl, python2, makeWrapper, pkg-config, gcc, { lib, stdenv, fetchFromGitHub, fetchurl, python2, makeWrapper, pkg-config, gcc,
pypy, libffi, libedit, libuv, boost, zlib, pypy, libffi, libedit, libuv, boost, zlib,
variant ? "jit", buildWithPypy ? false }: variant ? "jit", buildWithPypy ? false }:
@ -11,10 +11,11 @@ let
no-jit = { flags = ""; target = "target.py"; }; no-jit = { flags = ""; target = "target.py"; };
no-jit-preload = { flags = ""; target = "target_preload.py"; }; no-jit-preload = { flags = ""; target = "target_preload.py"; };
}; };
pixie-src = fetchgit { pixie-src = fetchFromGitHub {
url = "https://github.com/pixie-lang/pixie.git"; owner = "pixie-lang";
repo = "pixie";
rev = "5eb0ccbe8b0087d3a5f2d0bbbc6998d624d3cd62"; rev = "5eb0ccbe8b0087d3a5f2d0bbbc6998d624d3cd62";
sha256 = "0pf31x5h2m6dpxlidv98qay1y179qw40cw4cb4v4xa88gmq2f3vm"; sha256 = "sha256-dQ8ncH0IqU42WYxwBgjH6QQfvMIo7RZpv81UAUsPw10=";
}; };
pypy-tag = "91db1a9"; pypy-tag = "91db1a9";
pypy-src = fetchurl { pypy-src = fetchurl {

View File

@ -1,13 +1,14 @@
{ fetchgit, lib, stdenv, ant, jdk }: { fetchFromGitHub, lib, stdenv, ant, jdk }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "hydra-ant-logger"; pname = "hydra-ant-logger";
version = "2010.2"; version = "2010.2";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/NixOS/hydra-ant-logger.git"; owner = "NixOS";
repo = "hydra-ant-logger";
rev = "dae3224f4ed42418d3492bdf5bee4f825819006f"; rev = "dae3224f4ed42418d3492bdf5bee4f825819006f";
sha256 = "01s7m6007rn9107rw5wcgna7i20x6p6kfzl4f79jrvpkjy6kz176"; sha256 = "sha256-5oQ/jZfz7izTcYR+N801HYh4lH2MF54PCMnmA4CpRwc=";
}; };
buildInputs = [ ant jdk ]; buildInputs = [ ant jdk ];

View File

@ -14,10 +14,11 @@ let lispPackages = rec {
description = "The Common Lisp package manager"; description = "The Common Lisp package manager";
deps = []; deps = [];
src = pkgs.fetchgit { src = pkgs.fetchFromGitHub {
url = "https://github.com/quicklisp/quicklisp-client/"; owner = "quicklisp";
rev = "refs/tags/version-${version}"; repo = "quicklisp-client";
sha256 = "sha256:102f1chpx12h5dcf659a9kzifgfjc482ylf73fg1cs3w34zdawnl"; rev = "version-${version}";
sha256 = "sha256-1HLVPhl8aBaeG8dRLxBh0j0X/0wqFeNYK1CEfiELToA=";
}; };
overrides = x: rec { overrides = x: rec {
inherit clwrapper; inherit clwrapper;

View File

@ -1,13 +1,14 @@
{ mkDerivation, ansi-wl-pprint, base, fetchgit, lib, process, QuickCheck { mkDerivation, ansi-wl-pprint, base, fetchFromGitHub, lib, process, QuickCheck
, transformers, transformers-compat , transformers, transformers-compat
}: }:
mkDerivation { mkDerivation {
pname = "hercules-ci-optparse-applicative"; pname = "hercules-ci-optparse-applicative";
version = "0.16.1.0"; version = "0.16.1.0";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/hercules-ci/optparse-applicative.git"; owner = "hercules-ci";
sha256 = "05vchaw2rf46hh2128qjpky686iy5hff964mbdhcyiz612jjflyp"; repo = "optparse-applicative";
rev = "9e2968c09a7c5b29d04578dc68d81ce5aec0591e"; rev = "9e2968c09a7c5b29d04578dc68d81ce5aec0591e";
sha256 = "sha256-11MnpQjmR89gW5WY5BwsPhpk/LwSIxEEhIa4LLiCbBc=";
}; };
libraryHaskellDepends = [ libraryHaskellDepends = [
ansi-wl-pprint base process transformers transformers-compat ansi-wl-pprint base process transformers transformers-compat

View File

@ -1,15 +1,14 @@
{ buildPecl, lib, fetchgit, php, cyrus_sasl, zlib, pkg-config, libmemcached }: { buildPecl, lib, fetchFromGitHub, php, cyrus_sasl, zlib, pkg-config, libmemcached }:
let
buildPecl rec {
pname = "memcached"; pname = "memcached";
version = "3.1.5"; version = "3.1.5";
in
buildPecl {
inherit pname version;
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/php-memcached-dev/php-memcached"; owner = "php-memcached-dev";
repo = "php-memcached";
rev = "v${version}"; rev = "v${version}";
sha256 = "01mbh2m3kfbdvih3c8g3g9h4vdd80r0i9g2z8b3lx3mi8mmcj380"; sha256 = "sha256-AA3JakWxjk7HQl+8FEEGqLVNYHrjITZg3G25OaqAqwY=";
}; };
internalDeps = [ internalDeps = [

View File

@ -12,14 +12,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "awscrt"; pname = "awscrt";
version = "0.13.5"; version = "0.13.6";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-dUNljMKsbl6eByhEYivWgRJczTBw3N1RVl8r3e898mg="; hash = "sha256-aZ1Mquc4IfrdWjOaHMipjNb6gLGGbdKS8ah5b33eqGo=";
}; };
buildInputs = lib.optionals stdenv.isDarwin [ buildInputs = lib.optionals stdenv.isDarwin [

View File

@ -13,12 +13,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pycurl"; pname = "pycurl";
version = "7.45.0"; version = "7.45.1";
disabled = isPyPy || (pythonOlder "3.5"); # https://github.com/pycurl/pycurl/issues/208 disabled = isPyPy || (pythonOlder "3.5"); # https://github.com/pycurl/pycurl/issues/208
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-UDbFPG9BBukWDQU6S6o0M6AhX7M4YHPiESc8VqOpXz0="; sha256 = "sha256-qGOtGP9Hj1VFkkBXiHza5CLhsnRuQWdGFfaHSY6luIo=";
}; };
preConfigure = '' preConfigure = ''

View File

@ -20,6 +20,7 @@
, enableShared ? !stdenv.hostPlatform.isStatic , enableShared ? !stdenv.hostPlatform.isStatic
, enableStatic ? stdenv.hostPlatform.isStatic , enableStatic ? stdenv.hostPlatform.isStatic
, webUISupport ? false , webUISupport ? false
, extraGrammars ? {}
}: }:
# TODO: move to carnix or https://github.com/kolloch/crate2nix # TODO: move to carnix or https://github.com/kolloch/crate2nix
@ -51,19 +52,18 @@ let
runCommand "grammars" { } ('' runCommand "grammars" { } (''
mkdir $out mkdir $out
'' + (lib.concatStrings (lib.mapAttrsToList '' + (lib.concatStrings (lib.mapAttrsToList
(name: grammar: "ln -s ${fetchGrammar grammar} $out/${name}\n") (name: grammar: "ln -s ${if grammar ? src then grammar.src else fetchGrammar grammar} $out/${name}\n")
(import ./grammars { inherit lib; })))); (import ./grammars { inherit lib; }))));
builtGrammars = builtGrammars =
let let
change = name: grammar: change = name: grammar:
callPackage ./grammar.nix { } { callPackage ./grammar.nix { } {
language = if grammar ? language then grammar.language else name; language = if grammar ? language then grammar.language else name;
inherit version; inherit version;
source = fetchGrammar grammar; source = if grammar ? src then grammar.src else fetchGrammar grammar;
location = if grammar ? location then grammar.location else null; location = if grammar ? location then grammar.location else null;
}; };
grammars' = (import ./grammars { inherit lib; }); grammars' = import ./grammars { inherit lib; } // extraGrammars;
grammars = grammars' // grammars = grammars' //
{ tree-sitter-ocaml = grammars'.tree-sitter-ocaml // { location = "ocaml"; }; } // { tree-sitter-ocaml = grammars'.tree-sitter-ocaml // { location = "ocaml"; }; } //
{ tree-sitter-ocaml-interface = grammars'.tree-sitter-ocaml // { location = "interface"; }; } // { tree-sitter-ocaml-interface = grammars'.tree-sitter-ocaml // { location = "interface"; }; } //
@ -71,7 +71,7 @@ let
{ tree-sitter-typescript = grammars'.tree-sitter-typescript // { location = "typescript"; }; } // { tree-sitter-typescript = grammars'.tree-sitter-typescript // { location = "typescript"; }; } //
{ tree-sitter-tsx = grammars'.tree-sitter-typescript // { location = "tsx"; }; }; { tree-sitter-tsx = grammars'.tree-sitter-typescript // { location = "tsx"; }; };
in in
lib.mapAttrs change grammars; lib.mapAttrs change (grammars);
# Usage: # Usage:
# pkgs.tree-sitter.withPlugins (p: [ p.tree-sitter-c p.tree-sitter-java ... ]) # pkgs.tree-sitter.withPlugins (p: [ p.tree-sitter-c p.tree-sitter-java ... ])

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/sogaiu/tree-sitter-clojure", "url": "https://github.com/sogaiu/tree-sitter-clojure",
"rev": "39bf0977d223879436c1425fe6bfeb3bcfd86f92", "rev": "1b24766fe9feacb8f5006233fe5c2ebd0ba31eff",
"date": "2021-08-15T13:16:31+09:00", "date": "2022-02-19T08:24:15+09:00",
"path": "/nix/store/7kpf74gw4a68fby6jiw4n7lc4jfkgcf4-tree-sitter-clojure", "path": "/nix/store/1vxhbw0dxg95z8rbs1b96nrcjvhrhb52-tree-sitter-clojure",
"sha256": "0ryj75znysvyvv4qaghygx1srrhlwhfmzmdilm652prkgj6yzh6b", "sha256": "0sqi825gyjndn3v00kvk9scw6s5q0lr3ig6v49sccqc2addnr6di",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/tree-sitter/tree-sitter-cpp", "url": "https://github.com/tree-sitter/tree-sitter-cpp",
"rev": "656d7ea44b2b0daece78791e30281e283f30001e", "rev": "a832195eb3685a279856bb480ce19cff19554b6d",
"date": "2022-01-17T09:06:11-06:00", "date": "2022-03-14T15:34:21-05:00",
"path": "/nix/store/w4qqya24zf0cd7rqw1440szrrad8nf23-tree-sitter-cpp", "path": "/nix/store/ixca3nass3hkf0pycf7zhz15h2yq11sk-tree-sitter-cpp",
"sha256": "0vfgv9rw8pw4d41p5rndy7cjw8w0k0vnn54cwpxkm3r2vblnjn58", "sha256": "1y0i3w21zg8khns97wy5wpw57bhni4c8faszaz9qb0nrgarbf3i6",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/thehamsta/tree-sitter-cuda", "url": "https://github.com/thehamsta/tree-sitter-cuda",
"rev": "14cd86e18ba45e327017de5b3e0f8d8f7f8e98ec", "rev": "5178a7a5b25dc7ee4a69bf72f31bd6d3ff0a0795",
"date": "2022-01-24T00:39:28+01:00", "date": "2022-03-16T21:48:20+01:00",
"path": "/nix/store/3lskjrhqd16ymvsbrwzcsdd80cyr7ljj-tree-sitter-cuda", "path": "/nix/store/gd5s063qfyas370a9rd8mn9wc9d68s15-tree-sitter-cuda",
"sha256": "09qpl5mfv39788smz87zbzp04i3rdhsckjjqngvr0w24dsw30nyx", "sha256": "17zqpd27b09izpp9lvkgc1hcnq5nc58i98pak0qi46z85r6zgp6g",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/camdencheek/tree-sitter-dockerfile", "url": "https://github.com/camdencheek/tree-sitter-dockerfile",
"rev": "7af32bc04a66ab196f5b9f92ac471f29372ae2ce", "rev": "d34a0cebd094e830bdd2106a28cb2f1fb22401d8",
"date": "2021-12-16T07:47:57-07:00", "date": "2022-01-27T11:20:14-07:00",
"path": "/nix/store/gh1pnracilf89q9z5czqr4z7lkd480xb-tree-sitter-dockerfile", "path": "/nix/store/3whf6fv79zqk5w0d6jbzfgs5jzm4cll4-tree-sitter-dockerfile",
"sha256": "06hy683mrp1jcg2ypd6msbmv0pm2z85y8nqxgrnbr9vbi6syvmp5", "sha256": "0kf4c4xs5naj8lpcmr3pbdvwj526wl9p6zphxxpimbll7qv6qfnd",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/rydesun/tree-sitter-dot", "url": "https://github.com/rydesun/tree-sitter-dot",
"rev": "92877bac7033e409ccfb3f07fe28ef1dfd359457", "rev": "917230743aa10f45a408fea2ddb54bbbf5fbe7b7",
"date": "2021-10-13T19:28:51+08:00", "date": "2022-03-11T21:17:49+08:00",
"path": "/nix/store/h3dyw3kcgw77lma750wjgr1n8pjllxn6-tree-sitter-dot", "path": "/nix/store/3xvainpyzwpbhbm30mmvvgxpgh4agljh-tree-sitter-dot",
"sha256": "1l8g348nqqil7lygkhzw1ydwf3q2m5786qddp1f9jg1bdrv9p8rl", "sha256": "1q2rbv16dihlmrbxlpn0x03na7xp8rdhf58vwm3lryn3nfcjckn2",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/elixir-lang/tree-sitter-elixir", "url": "https://github.com/elixir-lang/tree-sitter-elixir",
"rev": "de20391afe5cb03ef1e8a8e43167e7b58cc52869", "rev": "b4027d7cfc96935b50878bdf9faf80bd64ac73cf",
"date": "2022-01-10T10:35:12-06:00", "date": "2022-03-04T15:40:04+00:00",
"path": "/nix/store/099pwd7iv86g1j4fplgq33a4jpwbvv60-tree-sitter-elixir", "path": "/nix/store/h3qh2s4q51bnq66p1v067g1fb8bd1743-tree-sitter-elixir",
"sha256": "0zrkrwhw3g1vazsxcwrfd1fk4wvs9hdwmwp6073mfh370bz4140h", "sha256": "1pf2n1j8j5w7mrh81yzvha1gh4w3vffngikj04kzd5gkx9asf3x6",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/abstractmachineslab/tree-sitter-erlang", "url": "https://github.com/abstractmachineslab/tree-sitter-erlang",
"rev": "9d5fd0c329280a156bf7614a49dc5e8c58cc037c", "rev": "fab680273af1a8f5cc0c3a0c62cbf5b1bea71f39",
"date": "2021-08-03T11:57:52+02:00", "date": "2022-03-05T23:18:36+01:00",
"path": "/nix/store/35ydhh12dgf4q016gjka35wnqnkwc1jg-tree-sitter-erlang", "path": "/nix/store/vj28kyy3jg21qicwxq2g1ysrwfqd3mz9-tree-sitter-erlang",
"sha256": "0d6wl95wgys21vcix6j0bf7l000glkmk1n6shgcnp4baw9wxh009", "sha256": "0shzzik8yxwb76kxs3l0fccjwvkarck1q4wqyv5hdma6hwl52b69",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/travonted/tree-sitter-fennel", "url": "https://github.com/travonted/tree-sitter-fennel",
"rev": "fce4331731a960077ff5f98939bc675179f1908a", "rev": "d37fd84a702b78ff0282f223ece83c61ab062a6e",
"date": "2021-09-30T09:09:52-04:00", "date": "2022-02-21T08:13:28-05:00",
"path": "/nix/store/mhpkw4gl6lzi306q21kckafqcdc0a715-tree-sitter-fennel", "path": "/nix/store/lafx5rw9r9jp9056sv0sk89kxfjlb9x3-tree-sitter-fennel",
"sha256": "1k8acyav26248liz0psk2r9dl7472mqgdyrjwg3pfxx94jgqjcik", "sha256": "1wqvz8v877jh7shv50xbnx1bxvdlnfnpmndwzsb0smidnzx7lbw2",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/ram02z/tree-sitter-fish", "url": "https://github.com/ram02z/tree-sitter-fish",
"rev": "04e54ab6585dfd4fee6ddfe5849af56f101b6d4f", "rev": "d482d70ea8e191c05b2c1b613ed6fdff30a14da0",
"date": "2021-08-02T21:46:56+01:00", "date": "2022-03-14T15:15:13+00:00",
"path": "/nix/store/0n3jfh7gk16bmikix34y5m534ac12xgc-tree-sitter-fish", "path": "/nix/store/5ajcf2hl1hph7iky6lwp5vh7a49k587s-tree-sitter-fish",
"sha256": "1810z8ah1b09qpxcr4bh63bxsnxx24r6d2h46v2cpqv1lg0g4z14", "sha256": "0idnm9lrvj1jhrvrgcddppkc09hr7inciz6k02d0nnxv8pqaw3w6",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/tree-sitter/tree-sitter-haskell", "url": "https://github.com/tree-sitter/tree-sitter-haskell",
"rev": "d6ccd2d9c40bdec29fee0027ef04fe5ff1ae4ceb", "rev": "ed976b81b00ce7b72b99bca75e7a616cc526220c",
"date": "2022-01-07T03:13:04+01:00", "date": "2022-03-20T00:05:14+01:00",
"path": "/nix/store/biyjfajma7nr175xviaw65jksqfak893-tree-sitter-haskell", "path": "/nix/store/wzkfkix4q3vcrlsj2v4q32ihw0vdp1li-tree-sitter-haskell",
"sha256": "0zfxi3adqhy7d1w2dvnywkms8a4vfxkjswdhar7p5sxyps8a5wry", "sha256": "19g5f59gh6s4xpphrppmrqlh0nfld0q8zffy85pkby4gd6xh73zm",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/tree-sitter/tree-sitter-java", "url": "https://github.com/tree-sitter/tree-sitter-java",
"rev": "a24ae7d16de3517bff243a87d087d0b4877a65c5", "rev": "881b84fe7078651af5077cc4cea4c85f9fddde3b",
"date": "2022-01-12T08:57:59-08:00", "date": "2022-03-21T10:50:51+01:00",
"path": "/nix/store/dipis7syj55xrmc72gvx2f9q672mn6dg-tree-sitter-java", "path": "/nix/store/ii1dwsg972sbllim6vrmjbcaw9fcy2b1-tree-sitter-java",
"sha256": "0p01xkxzdjwx32hd6k4kqidlhkgj8q9b9lp4g4fra5gx9w159iqm", "sha256": "0kvqqrx669fyaxm55l0p5vbswf9bfknl0brsr6llyzdz81dl0vk4",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/latex-lsp/tree-sitter-latex", "url": "https://github.com/latex-lsp/tree-sitter-latex",
"rev": "323b609de40b7729073482a3c59de76cfba7744f", "rev": "b71e4928a63a6d75bc1670004a5b5a98c850a149",
"date": "2022-02-08T21:23:53+01:00", "date": "2022-03-16T20:19:11+01:00",
"path": "/nix/store/f6kvr0x41rbb64s36ii6bj30fqaallz4-tree-sitter-latex", "path": "/nix/store/gzpihd6k8cqsl0facz7kfgn2dh294fxw-tree-sitter-latex",
"sha256": "1qsw5wcqs65ip0qq17vq6bf2snnpvw61iq2ahgwl9842ir15hrbr", "sha256": "1z2ywj57fpxaym6bv5ixvc01h8szazbhzmzzw960f49mlrima3n6",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/MDeiml/tree-sitter-markdown", "url": "https://github.com/MDeiml/tree-sitter-markdown",
"rev": "8bee14c30ecadd55c2d65633973b4e81f93525e0", "rev": "b49b2da50864171eff56acc8ba067c3540a3991f",
"date": "2022-01-16T14:47:09+01:00", "date": "2022-02-26T15:22:17+01:00",
"path": "/nix/store/cv7xqvcj4bjifzddkx5n2jd723dc6vlf-tree-sitter-markdown", "path": "/nix/store/vllxsz0nvlw6z9y6s199l5z8f5dlhcpv-tree-sitter-markdown",
"sha256": "0vibmpp86pkqllfhb0kg6zhaz09sh8m6a2d1xa8p2qdi7ryy7wqa", "sha256": "1adypmkfsf6pgahba588d8l6ib59209rb2fkyk2dv0d3va76pr8x",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/cstrahan/tree-sitter-nix", "url": "https://github.com/cstrahan/tree-sitter-nix",
"rev": "6d6aaa50793b8265b6a8b6628577a0083d3b923d", "rev": "470b15a60520ff7b86f51732b8d8f1118c86041e",
"date": "2021-11-29T00:27:21-06:00", "date": "2022-03-18T01:42:08-05:00",
"path": "/nix/store/6cjadxvqbrh205lsqnk2rnzq3badxdxv-tree-sitter-nix", "path": "/nix/store/c5y76kz7wmfq05hfw4xpqz2ahcdy924f-tree-sitter-nix",
"sha256": "0cbk6dqppasrvnm87pwfgm718z6b0xmy9m7zj8ysil0h8bklz1w9", "sha256": "1hl0mpy0i6r160v6v3nflrdi5fnmd8i5zbx963h5nj9fg4srkb5r",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/nvim-neorg/tree-sitter-norg", "url": "https://github.com/nvim-neorg/tree-sitter-norg",
"rev": "b7f879eaf9f20852f6b670439154b0128fbb6558", "rev": "17d61df817c1e0a9cdef8d915d4e4c556b7cf68c",
"date": "2022-02-08T12:24:02+01:00", "date": "2022-03-16T16:23:43+01:00",
"path": "/nix/store/q02py98zm9cmalzc5a0yqw8lg73ybx9g-tree-sitter-norg", "path": "/nix/store/xjsyabq06584fnwjvqbyqf6yd19i4gn9-tree-sitter-norg",
"sha256": "07hm5sysb25ivlz52ijnbka02hlqksha259w7v03awap85i9ydk6", "sha256": "161pmkpfyfhf4lcgkzcl1wdi4bsmmpwxcz7kjcb0jpjy7bamikch",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/ganezdragon/tree-sitter-perl", "url": "https://github.com/ganezdragon/tree-sitter-perl",
"rev": "ab2b39439f2fc82fd5ea0b7e08509760d4cbacd5", "rev": "bbf86084d9b7eb4768f3fb9fe094b3e0600057b1",
"date": "2022-01-23T13:55:11-05:00", "date": "2022-02-26T01:42:56+05:30",
"path": "/nix/store/s55aybm3r5n7l7nx916mhjyry96xcvin-tree-sitter-perl", "path": "/nix/store/cpsi8sjl3d1v5sg2rcsw3arf7zwm4l06-tree-sitter-perl",
"sha256": "16ap0yq9gmh0kbyka7zcpjw3dl368n23sxp3v82z4ccwzmgfmaw4", "sha256": "037kdl6kq47p35qd3p6j4560x6w24zzmjxnz2fkd28xrm0lsh9lm",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/victorhqc/tree-sitter-prisma", "url": "https://github.com/victorhqc/tree-sitter-prisma",
"rev": "74a721e8eed1a4a25cf495d45974ba24f315f81a", "rev": "bf0833cbedb2c5b39250f5ba900f1239a16c6749",
"date": "2021-11-19T19:52:32+01:00", "date": "2022-03-18T18:56:29+01:00",
"path": "/nix/store/rbr2p57ic1kn0121ca6k0bh2r8svw066-tree-sitter-prisma", "path": "/nix/store/9pq2l5b34xvi3v6i9zq1qxh3r2ilg2qs-tree-sitter-prisma",
"sha256": "1b8yil6v9jz9ndx2kzln639fkjkj1xb0qfcip1njxcq5mlqlfswd", "sha256": "0idgrra41w4v3sa4sb0p3ba7k6sxfw74px4fkpprddjqjdnsrl50",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/tree-sitter/tree-sitter-rust", "url": "https://github.com/tree-sitter/tree-sitter-rust",
"rev": "a250c4582510ff34767ec3b7dcdd3c24e8c8aa68", "rev": "0509e440ae042db6483984b3a56b3c5f24b5d9b9",
"date": "2022-02-04T13:11:35-08:00", "date": "2022-03-09T12:11:47+01:00",
"path": "/nix/store/i1f2zyrqghy98pl7dfnvcpbs3jsnmhay-tree-sitter-rust", "path": "/nix/store/9jrsqsrql5wlbzmqna111w4a02hf75z2-tree-sitter-rust",
"sha256": "174j5pxwf80c4xniri39l3a6bb7nq96g2s8hh5sgv4i7xvbpfsmg", "sha256": "1r8n8441b8bppizlzh4xw7yy3amz4apfxpqxm8hw0n3j3iwnw4pz",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/vigoux/tree-sitter-viml", "url": "https://github.com/vigoux/tree-sitter-viml",
"rev": "bc573ef552adf8bed9e36eb687a0cccf43158634", "rev": "c9d70082af14988842eb071c6c0b07e8d1d993ac",
"date": "2022-01-24T16:13:56+01:00", "date": "2022-03-21T17:11:25+01:00",
"path": "/nix/store/2i9n2fvjk0ymxv32ziq5z9ykv95svi7d-tree-sitter-viml", "path": "/nix/store/z1bjg25frb0sq7kr0s3sp6jnz888p900-tree-sitter-viml",
"sha256": "0ckx9jh9fqfw5x9yb0sljczb0xsgxs8j6v2qbqywh5z6fcqx8sjc", "sha256": "05mf8i5ni0kp4g1gdpgwjxi2d86hna2ijp9k7c1gy9j33hsq9i8g",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -1,9 +1,9 @@
{ {
"url": "https://github.com/maxxnino/tree-sitter-zig", "url": "https://github.com/maxxnino/tree-sitter-zig",
"rev": "93331b8bd8b4ebee2b575490b2758f16ad4e9f30", "rev": "42e93d02ca945094699e2dc4de785bbaf8f740ec",
"date": "2022-01-10T15:22:15+09:00", "date": "2022-02-11T10:40:42+09:00",
"path": "/nix/store/g54w7vid7nf9shzfipch646dk4d88ah7-tree-sitter-zig", "path": "/nix/store/2yv27si133zqb93bm9gia0ymib9q2y75-tree-sitter-zig",
"sha256": "0irckd6bh3i1vr5bi2lwsbvibbpih3jv3xqdq0dbsiy447dfiv50", "sha256": "14p02b04v67cvkvj7apipsmkmvv3jnhykm0qrrmqqxnkprac31im",
"fetchLFS": false, "fetchLFS": false,
"fetchSubmodules": false, "fetchSubmodules": false,
"deepClone": false, "deepClone": false,

View File

@ -41,7 +41,8 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin mkdir -p $out/bin
makeWrapper ${lib.getBin php}/bin/php $out/bin/wp \ makeWrapper ${lib.getBin php}/bin/php $out/bin/wp \
--add-flags "-c $dir/php.ini" \ --add-flags "-c $dir/php.ini" \
--add-flags "-f $dir/wp-cli" --add-flags "-f $dir/wp-cli" \
--add-flags "--"
# this is a very basic run test # this is a very basic run test
$out/bin/wp --info >/dev/null $out/bin/wp --info >/dev/null

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, cmake, jemalloc }: { lib, stdenv, fetchFromGitHub, pkg-config, zlib, cmake, enableJemalloc ? !stdenv.hostPlatform.isMusl, jemalloc }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "lwan"; pname = "lwan";
@ -13,7 +13,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ jemalloc zlib ]; buildInputs = [ zlib ] ++ lib.optional enableJemalloc jemalloc;
# Note: tcmalloc and mimalloc are also supported (and normal malloc)
cmakeFlags = lib.optional enableJemalloc "-DUSE_ALTERNATIVE_MALLOC=jemalloc";
hardeningDisable = lib.optional stdenv.hostPlatform.isMusl "pie";
meta = with lib; { meta = with lib; {
description = "Lightweight high-performance multi-threaded web server"; description = "Lightweight high-performance multi-threaded web server";

View File

@ -15,16 +15,16 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "minio"; pname = "minio";
version = "2022-02-24T22-12-01Z"; version = "2022-03-17T06-34-49Z";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "minio"; owner = "minio";
repo = "minio"; repo = "minio";
rev = "RELEASE.${version}"; rev = "RELEASE.${version}";
sha256 = "sha256-7bnT+rxQw2h1wCkXjsYm8ystU9F4EUL0KASkJmqLgXQ="; sha256 = "sha256-iHwFkxfSLrtzSiOmfVFggBvfL0SL6ZLVJWMGK3RHZGU=";
}; };
vendorSha256 = "sha256-fYpnYMt6VrC2eem8XvK8oAR1B0rQ4DV6ZWo0cLNCjCs="; vendorSha256 = "sha256-ujkrbP7FuL7jdYTRaGMEYha1BJKJnpCssuO47XGMBGo=";
doCheck = false; doCheck = false;

View File

@ -1,27 +0,0 @@
{ lib
, python2
}:
python2.pkgs.buildPythonApplication rec {
pname = "bitbucket-cli";
version = "0.5.1";
src = python2.pkgs.fetchPypi {
inherit pname version;
sha256 = "1xmn73x6jirnwfwcdy380ncmkai9f9dhmld6zin01ypbqwgf50fq";
};
propagatedBuildInputs = with python2.pkgs; [
requests
];
# No tests
doCheck = false;
meta = with lib; {
description = "Bitbucket command line interface";
homepage = "https://bitbucket.org/zhemao/bitbucket-cli";
maintainers = with maintainers; [ refnil ];
license = licenses.bsd2;
};
}

View File

@ -100,6 +100,7 @@ mapAliases ({
beegfs = throw "beegfs has been removed"; # Added 2019-11-24 beegfs = throw "beegfs has been removed"; # Added 2019-11-24
beret = throw "beret has been removed"; # Added 2021-11-16 beret = throw "beret has been removed"; # Added 2021-11-16
bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07 bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07
bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21
bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22 bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22
blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01 blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01
bluezFull = bluez; # Added 2019-12-03 bluezFull = bluez; # Added 2019-12-03

View File

@ -2301,8 +2301,6 @@ with pkgs;
birdtray = libsForQt5.callPackage ../applications/misc/birdtray { }; birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };
bitbucket-cli = callPackage ../tools/misc/bitbucket-cli { };
bitbucket-server-cli = callPackage ../applications/version-management/git-and-tools/bitbucket-server-cli { }; bitbucket-server-cli = callPackage ../applications/version-management/git-and-tools/bitbucket-server-cli { };
blitz = callPackage ../development/libraries/blitz { }; blitz = callPackage ../development/libraries/blitz { };
@ -15934,7 +15932,7 @@ with pkgs;
travis = callPackage ../development/tools/misc/travis { }; travis = callPackage ../development/tools/misc/travis { };
tree-sitter = callPackage ../development/tools/parsing/tree-sitter { tree-sitter = makeOverridable (callPackage ../development/tools/parsing/tree-sitter) {
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security;
}; };