mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 13:13:09 +00:00
Merge master into staging-next
This commit is contained in:
commit
ce434a97e2
@ -547,7 +547,6 @@ def update_plugins(editor: Editor, args):
|
|||||||
|
|
||||||
log.setLevel(LOG_LEVELS[args.debug])
|
log.setLevel(LOG_LEVELS[args.debug])
|
||||||
log.info("Start updating plugins")
|
log.info("Start updating plugins")
|
||||||
nixpkgs_repo = git.Repo(editor.root, search_parent_directories=True)
|
|
||||||
update = editor.get_update(args.input_file, args.outfile, args.proc)
|
update = editor.get_update(args.input_file, args.outfile, args.proc)
|
||||||
|
|
||||||
redirects = update()
|
redirects = update()
|
||||||
@ -556,6 +555,7 @@ def update_plugins(editor: Editor, args):
|
|||||||
autocommit = not args.no_commit
|
autocommit = not args.no_commit
|
||||||
|
|
||||||
if autocommit:
|
if autocommit:
|
||||||
|
nixpkgs_repo = git.Repo(editor.root, search_parent_directories=True)
|
||||||
commit(nixpkgs_repo, f"{editor.attr_path}: update", [args.outfile])
|
commit(nixpkgs_repo, f"{editor.attr_path}: update", [args.outfile])
|
||||||
|
|
||||||
if redirects:
|
if redirects:
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
, gst_all_1
|
, gst_all_1
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, libhandy
|
, libhandy
|
||||||
|
, libdazzle
|
||||||
, python3Packages
|
, python3Packages
|
||||||
, file
|
|
||||||
, cairo
|
, cairo
|
||||||
, gettext
|
, gettext
|
||||||
, gnome
|
, gnome
|
||||||
@ -22,7 +22,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
format = "other"; # no setup.py
|
format = "other"; # no setup.py
|
||||||
|
|
||||||
pname = "cozy";
|
pname = "cozy";
|
||||||
version = "1.0.3";
|
version = "1.1.2";
|
||||||
|
|
||||||
# Temporary fix
|
# Temporary fix
|
||||||
# See https://github.com/NixOS/nixpkgs/issues/57029
|
# See https://github.com/NixOS/nixpkgs/issues/57029
|
||||||
@ -33,7 +33,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
owner = "geigi";
|
owner = "geigi";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0m0xiqpb87pwr3fhy0a4qxg67yjhwchcxj3x2anyy0li4inryxag";
|
sha256 = "sha256-QENn8mFMk06/Uj8QJo0mJQ7frJNcv5RVNJwDB+H/LkI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -49,6 +49,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
cairo
|
cairo
|
||||||
gettext
|
gettext
|
||||||
gnome.adwaita-icon-theme
|
gnome.adwaita-icon-theme
|
||||||
|
libdazzle
|
||||||
libhandy
|
libhandy
|
||||||
pantheon.granite
|
pantheon.granite
|
||||||
] ++ (with gst_all_1; [
|
] ++ (with gst_all_1; [
|
||||||
@ -56,6 +57,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
gst-plugins-ugly
|
gst-plugins-ugly
|
||||||
gst-plugins-base
|
gst-plugins-base
|
||||||
|
gst-plugins-bad
|
||||||
]);
|
]);
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
@ -14,17 +14,17 @@ let
|
|||||||
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
||||||
|
|
||||||
sha256 = {
|
sha256 = {
|
||||||
x86_64-linux = "0i2pngrp2pcas99wkay7ahrcn3gl47gdjjaq7ladr879ypldh24v";
|
x86_64-linux = "0g49765pnimh107pw3q7dlgd6jcmr5gagsvxrdx8i93mbxb0xm0c";
|
||||||
x86_64-darwin = "1pni2cd5s6m9jxwpja4ma9xlr1q3xl46w8pim3971dw3xi5r29pg";
|
x86_64-darwin = "1837fcpllblm970jxsal0ahxsnjmsgydy6g6qn51hp7f797gi7zb";
|
||||||
aarch64-linux = "0j71ha2df99583w8r2l1hppn6wx8ll80flwcj5xzj7icv3mq8x7v";
|
aarch64-linux = "1bpmgv6hjyb7jl9v8qyqiyr0brl4xq3wnls2v9hirja6ls1x14cx";
|
||||||
aarch64-darwin = "0vhp1z890mvs8hnwf43bfv74a7y0pv5crjn53rbiy0il1ihs1498";
|
aarch64-darwin = "0qksfscbiyr2ynw3j86g8wm7myyabkjwx03ik3z6rrv7dffb5yii";
|
||||||
armv7l-linux = "07yb0ia1rnbav3gza2y53yd3bcxqmngddd4jz6p4y0m539znl817";
|
armv7l-linux = "063p2wy1wl57p43f3md0wp2d981nnb650hyqs9rgqm4mlk2s168g";
|
||||||
}.${system};
|
}.${system};
|
||||||
in
|
in
|
||||||
callPackage ./generic.nix rec {
|
callPackage ./generic.nix rec {
|
||||||
# Please backport all compatible updates to the stable release.
|
# Please backport all compatible updates to the stable release.
|
||||||
# This is important for the extension ecosystem.
|
# This is important for the extension ecosystem.
|
||||||
version = "1.59.1";
|
version = "1.60.0";
|
||||||
pname = "vscode";
|
pname = "vscode";
|
||||||
|
|
||||||
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
||||||
|
@ -31,9 +31,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dev": {
|
"dev": {
|
||||||
"version": "95.0.4621.4",
|
"version": "95.0.4628.3",
|
||||||
"sha256": "06fgdyg3bychqhf31fikk7s4qp3rc7hmsvm6p2bj9ascd6kzjzx8",
|
"sha256": "04r2db9kl77lp4jyyj01pc70jkxrifbnz5hic4r91lf8m2gf1fa3",
|
||||||
"sha256bin64": "1bvkdrc7cznb9xrnld642qj3z7vbyin9xbq0pp6kqva4gck41cyn",
|
"sha256bin64": "1ssf8jdk6gn2mrnyvgz2c9nkk70rsidd5y26w2kx3s0cllfr7d96",
|
||||||
"deps": {
|
"deps": {
|
||||||
"gn": {
|
"gn": {
|
||||||
"version": "2021-08-11",
|
"version": "2021-08-11",
|
||||||
|
@ -10,9 +10,13 @@ let
|
|||||||
copyGemFiles = true;
|
copyGemFiles = true;
|
||||||
gemdir = ./.;
|
gemdir = ./.;
|
||||||
};
|
};
|
||||||
in buildGoModule rec {
|
|
||||||
version = "14.2.1";
|
version = "14.2.1";
|
||||||
|
gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}";
|
||||||
|
in
|
||||||
|
|
||||||
|
buildGoModule {
|
||||||
pname = "gitaly";
|
pname = "gitaly";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
owner = "gitlab-org";
|
owner = "gitlab-org";
|
||||||
@ -27,6 +31,8 @@ in buildGoModule rec {
|
|||||||
inherit rubyEnv;
|
inherit rubyEnv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ldflags = "-X ${gitaly_package}/internal/version.version=${version} -X ${gitaly_package}/internal/version.moduleVersion=${version}";
|
||||||
|
|
||||||
tags = [ "static,system_libgit2" ];
|
tags = [ "static,system_libgit2" ];
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ rubyEnv.wrappedRuby libgit2 openssl zlib pcre http-parser ];
|
buildInputs = [ rubyEnv.wrappedRuby libgit2 openssl zlib pcre http-parser ];
|
||||||
@ -35,6 +41,7 @@ in buildGoModule rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $ruby
|
mkdir -p $ruby
|
||||||
cp -rv $src/ruby/{bin,lib,proto,git-hooks} $ruby
|
cp -rv $src/ruby/{bin,lib,proto,git-hooks} $ruby
|
||||||
|
mv $out/bin/gitaly-git2go $out/bin/gitaly-git2go-${version}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
outputs = [ "out" "ruby" ];
|
outputs = [ "out" "ruby" ];
|
||||||
|
@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "haversine";
|
pname = "haversine";
|
||||||
version = "2.4.0";
|
version = "2.5.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mapado";
|
owner = "mapado";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-Q38oeSy1ilXWc2r/GW8EWQHH2Ty+DyTxxrDX3OcOwKc=";
|
sha256 = "sha256-tHA1Ff/J1mfSnER2X/8e0QyQkuRz1mn8MeGlThVQaSg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "policyuniverse";
|
pname = "policyuniverse";
|
||||||
version = "1.4.0.20210816";
|
version = "1.4.0.20210819";
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "05fxn89f6rr5rrp117cnqsfzy1p3nbmq3izq2jqk6kackcr3cl8x";
|
sha256 = "sha256-RBRUR9Rzw3/yd2ZnteEBigDApJPBagpIk5lSGzeGqL4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests are not shipped and there are no GitHub tags
|
# Tests are not shipped and there are no GitHub tags
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "sqlmap";
|
pname = "sqlmap";
|
||||||
version = "1.5.8";
|
version = "1.5.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "01wyhmvg9yh5q86z7kahbvj2xnkjyvi1h2qj7clgz5yd76sh8ygn";
|
sha256 = "1714780f8835854c6f949f854fca936c3064b9a7e0da96989bb637a6ba5c119b";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -10,14 +10,14 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "time-machine";
|
pname = "time-machine";
|
||||||
version = "2.3.1";
|
version = "2.4.0";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "adamchainz";
|
owner = "adamchainz";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1flim8xaa7qglh2b39cf57i8g0kg0707pw3mdkrgh0xjn27bv9bi";
|
sha256 = "sha256-1k8mGkgJw0MfydJ/Sm8qDvFNaIqoHR1fZkVrXxvc8Zk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
, zip
|
, zip
|
||||||
# some packages need to be compiled with cmake
|
# some packages need to be compiled with cmake
|
||||||
, cmake
|
, cmake
|
||||||
|
, installShellFiles
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -37,9 +38,9 @@ stdenv.mkDerivation rec {
|
|||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
||||||
lua curl makeWrapper which
|
|
||||||
];
|
buildInputs = [ lua curl which ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -e "1s@.*@#! ${lua}/bin/lua$LUA_SUFFIX@" -i "$out"/bin/*
|
sed -e "1s@.*@#! ${lua}/bin/lua$LUA_SUFFIX@" -i "$out"/bin/*
|
||||||
@ -52,6 +53,9 @@ stdenv.mkDerivation rec {
|
|||||||
--suffix LUA_CPATH ";" "$(echo "$out"/share/lua/*/)?/init.lua"
|
--suffix LUA_CPATH ";" "$(echo "$out"/share/lua/*/)?/init.lua"
|
||||||
}
|
}
|
||||||
done
|
done
|
||||||
|
|
||||||
|
installShellCompletion --cmd luarocks --bash <($out/bin/luarocks completion bash)
|
||||||
|
installShellCompletion --cmd luarocks --zsh <($out/bin/luarocks completion zsh)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ zip unzip cmake ];
|
propagatedBuildInputs = [ zip unzip cmake ];
|
||||||
|
@ -1456,7 +1456,7 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) PCSC;
|
inherit (darwin.apple_sdk.frameworks) PCSC;
|
||||||
};
|
};
|
||||||
|
|
||||||
cozy = callPackage ../applications/audio/cozy-audiobooks { };
|
cozy = callPackage ../applications/audio/cozy { };
|
||||||
|
|
||||||
cpuid = callPackage ../os-specific/linux/cpuid { };
|
cpuid = callPackage ../os-specific/linux/cpuid { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user