Merge staging-next into staging
This commit is contained in:
commit
18fa792057
@ -24,6 +24,7 @@ in
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
(mkRenamedOptionModule [ "services" "mingetty" ] [ "services" "getty" ])
|
(mkRenamedOptionModule [ "services" "mingetty" ] [ "services" "getty" ])
|
||||||
|
(mkRemovedOptionModule [ "services" "getty" "serialSpeed" ] ''set non-standard baudrates with `boot.kernelParams` i.e. boot.kernelParams = ["console=ttyS2,1500000"];'')
|
||||||
];
|
];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
@ -92,17 +93,6 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
serialSpeed = mkOption {
|
|
||||||
type = types.listOf types.int;
|
|
||||||
default = [ 115200 57600 38400 9600 ];
|
|
||||||
example = [ 38400 9600 ];
|
|
||||||
description = ''
|
|
||||||
Bitrates to allow for agetty's listening on serial ports. Listing more
|
|
||||||
bitrates gives more interoperability but at the cost of long delays
|
|
||||||
for getting a sync on the line.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -124,10 +114,9 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
systemd.services."serial-getty@" =
|
systemd.services."serial-getty@" =
|
||||||
let speeds = concatStringsSep "," (map toString config.services.getty.serialSpeed); in
|
|
||||||
{ serviceConfig.ExecStart = [
|
{ serviceConfig.ExecStart = [
|
||||||
"" # override upstream default with an empty ExecStart
|
"" # override upstream default with an empty ExecStart
|
||||||
(gettyCmd "%I --keep-baud ${speeds} $TERM")
|
(gettyCmd "%I --keep-baud $TERM")
|
||||||
];
|
];
|
||||||
restartIfChanged = false;
|
restartIfChanged = false;
|
||||||
};
|
};
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
{ buildGoModule
|
{ buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
, lib
|
||||||
, tags ? [ "autopilotrpc" "signrpc" "walletrpc" "chainrpc" "invoicesrpc" "watchtowerrpc" "routerrpc" "monitoring" ]
|
, tags ? [ "autopilotrpc" "signrpc" "walletrpc" "chainrpc" "invoicesrpc" "watchtowerrpc" "routerrpc" "monitoring" "kvdb_postgres" "kvdb_etcd" ]
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "lnd";
|
pname = "lnd";
|
||||||
version = "0.13.4-beta";
|
version = "0.14.0-beta";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lightningnetwork";
|
owner = "lightningnetwork";
|
||||||
repo = "lnd";
|
repo = "lnd";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1ykvhbl5i0kqlh0fpzpjass55clys8bpa28brg7d9fs72zv2ks6x";
|
sha256 = "0pf84l46cfhbmbzjdkpmqp494wqix8715zawm537mm94k3q25bis";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "13cjb188bzgd3m3p73szxffkab6l7n6wmbvqvicvi9k3mixn5qql";
|
vendorSha256 = "1481zscd9lrnzxsaxkpaaa8fjazmfynhim13f8lj2yd9d21j5d31";
|
||||||
|
|
||||||
subPackages = [ "cmd/lncli" "cmd/lnd" ];
|
subPackages = [ "cmd/lncli" "cmd/lnd" ];
|
||||||
|
|
||||||
|
@ -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 = "0dwpczbxqy3rsqprdiakmqv6s3jzcg2wqxnf1znarx2qffb4ii9x";
|
x86_64-linux = "0wf8bmzag49n81kjb46kj2nkksimm8f7cf4ihpqcw8k5iwasn3j9";
|
||||||
x86_64-darwin = "0si76v80r0vhl76gbdwbykk6acifhifz8sb8wiyiiywkinlxs19w";
|
x86_64-darwin = "1s7i5087bvckg66mcb32krv12vxhaw7ii9vm3i6p72wr0sv7dddh";
|
||||||
aarch64-linux = "0nwgdvvsblh2r72ys2ng5b084wizkdjd00mm73506mgbs8pzcky4";
|
aarch64-linux = "0yzh5javinvas3zz0lliyc77vbcs1jrmxbkr7nic4snscg6wjhcd";
|
||||||
aarch64-darwin = "0qivq4077g5a4gwkskvvzxaa60w1gpgl67pmdyqn81rina04rdqs";
|
aarch64-darwin = "13l6ymz7v18s7ikxbwvkwb0f5ff2j82j5pfj04yy75kq9b5gh0vx";
|
||||||
armv7l-linux = "0myf96s1vdpllnw0vz0rpmyv2pfirv3p8pqgxxnpw860s2c26f2f";
|
armv7l-linux = "129wffj9cidk9ysjpq3p0ddn6liwkmrkxhxgz7bqzj8sdhwyq8pz";
|
||||||
}.${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.62.2";
|
version = "1.62.3";
|
||||||
pname = "vscode";
|
pname = "vscode";
|
||||||
|
|
||||||
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
||||||
|
@ -10,14 +10,14 @@
|
|||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
pname = "hydrus";
|
pname = "hydrus";
|
||||||
version = "461";
|
version = "462";
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hydrusnetwork";
|
owner = "hydrusnetwork";
|
||||||
repo = "hydrus";
|
repo = "hydrus";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-fVqMSzQ4VhiRh6gDFApln1jioIDs80ceyV+ClNRhjKA=";
|
sha256 = "sha256-eHUztpnDs1kxaBlTO7BRbO3eH+On9m7aJtbNw2b9Ado=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -1,31 +1,44 @@
|
|||||||
{ lib, mkDerivation, fetchFromGitHub, qtbase, qtmultimedia }:
|
{ lib, stdenv, fetchFromGitHub, wrapQtAppsHook, qmake, qtmultimedia }:
|
||||||
|
|
||||||
mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "kristall";
|
pname = "kristall";
|
||||||
version = "0.3";
|
version = "0.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "MasterQ32";
|
owner = "MasterQ32";
|
||||||
repo = "kristall";
|
repo = "kristall";
|
||||||
rev = "V" + version;
|
rev = "V${version}";
|
||||||
sha256 = "07nf7w6ilzs5g6isnvsmhh4qa1zsprgjyf0zy7rhpx4ikkj8c8zq";
|
sha256 = "07nf7w6ilzs5g6isnvsmhh4qa1zsprgjyf0zy7rhpx4ikkj8c8zq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qtbase qtmultimedia ];
|
postPatch = lib.optionalString stdenv.cc.isClang ''
|
||||||
|
sed -i '1i #include <errno.h>' src/browsertab.cpp
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ wrapQtAppsHook qmake ];
|
||||||
|
|
||||||
|
buildInputs = [ qtmultimedia ];
|
||||||
|
|
||||||
qmakeFlags = [ "src/kristall.pro" ];
|
qmakeFlags = [ "src/kristall.pro" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = if stdenv.isDarwin then ''
|
||||||
|
mkdir -p $out/Applications
|
||||||
|
mv kristall.app $out/Applications
|
||||||
|
'' else ''
|
||||||
install -Dt $out/bin kristall
|
install -Dt $out/bin kristall
|
||||||
install -D Kristall.desktop $out/share/applications/net.random-projects.kristall.desktop
|
install -D Kristall.desktop $out/share/applications/net.random-projects.kristall.desktop
|
||||||
|
install -D src/icons/kristall.svg $out/share/icons/hicolor/scalable/apps/net.random-projects.kristall.svg
|
||||||
|
for size in 16 32 64 128; do
|
||||||
|
install -D src/icons/kristall-''${size}.png $out/share/icons/hicolor/''${size}x''${size}/apps/net.random-projects.kristall.png
|
||||||
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
src.meta // {
|
description =
|
||||||
description =
|
"Graphical small-internet client, supports gemini, http, https, gopher, finger";
|
||||||
"Graphical small-internet client, supports gemini, http, https, gopher, finger";
|
homepage = "https://random-projects.net/projects/kristall.gemini";
|
||||||
homepage = "https://random-projects.net/projects/kristall.gemini";
|
maintainers = with maintainers; [ ehmry ];
|
||||||
maintainers = with maintainers; [ ehmry ];
|
license = licenses.gpl3Only;
|
||||||
license = licenses.gpl3;
|
inherit (qtmultimedia.meta) platforms;
|
||||||
inherit (qtmultimedia.meta) platforms;
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "qalculate-gtk";
|
pname = "qalculate-gtk";
|
||||||
version = "3.20.1";
|
version = "3.21.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "qalculate";
|
owner = "qalculate";
|
||||||
repo = "qalculate-gtk";
|
repo = "qalculate-gtk";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-GTOdJ4dxR491WU6WM47xLHO7RGUGXkdHuQIDxJvVvFE=";
|
sha256 = "sha256-w0frk1Nd1/HTo94VAbD7QjVuT8laPbmgd8ENTb0+89c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "The ultimate desktop calculator";
|
description = "The ultimate desktop calculator";
|
||||||
homepage = "http://qalculate.github.io";
|
homepage = "http://qalculate.github.io";
|
||||||
maintainers = with maintainers; [ gebner ];
|
maintainers = with maintainers; [ gebner doronbehar ];
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pantheon
|
, pantheon
|
||||||
, pkg-config
|
, pkg-config
|
||||||
@ -20,30 +20,15 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wingpanel-indicator-sound";
|
pname = "wingpanel-indicator-sound";
|
||||||
version = "6.0.0";
|
version = "6.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "elementary";
|
owner = "elementary";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0cv97c0qrhqisyghy9a9qr4ffcx3g4bkswxm6rn4r2wfg4gvljri";
|
sha256 = "sha256-FHZ4YhGLqGTz5Po2XFJvnWuAi1eHKcT9zzgJFHic02E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# Upstream code not respecting our localedir
|
|
||||||
# https://github.com/elementary/wingpanel-indicator-sound/pull/216
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/elementary/wingpanel-indicator-sound/commit/df816104c15e4322c1077313b1f43114cdaf710e.patch";
|
|
||||||
sha256 = "029z7l467jz1ymxwrzrf874062r6xmskl7mldpq39jh110fijy5l";
|
|
||||||
})
|
|
||||||
# Fix build with vala 0.54
|
|
||||||
# https://github.com/elementary/wingpanel-indicator-sound/pull/221
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/elementary/wingpanel-indicator-sound/commit/398d181eabe3dd803dc0ba335ac629902ec5b5ab.patch";
|
|
||||||
sha256 = "1r2x3n6ws56jk7xcgk60am8mc5dgf8pz5ipsydxvmlrmipkjxyqi";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
libxml2
|
libxml2
|
||||||
meson
|
meson
|
||||||
|
@ -54,7 +54,23 @@
|
|||||||
let
|
let
|
||||||
requiredOctavePackages' = computeRequiredOctavePackages requiredOctavePackages;
|
requiredOctavePackages' = computeRequiredOctavePackages requiredOctavePackages;
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
# Must use attrs.nativeBuildInputs before they are removed by the removeAttrs
|
||||||
|
# below, or everything fails.
|
||||||
|
nativeBuildInputs' = [
|
||||||
|
octave
|
||||||
|
writeRequiredOctavePackagesHook
|
||||||
|
]
|
||||||
|
++ nativeBuildInputs;
|
||||||
|
|
||||||
|
# This step is required because when
|
||||||
|
# a = { test = [ "a" "b" ]; }; b = { test = [ "c" "d" ]; };
|
||||||
|
# (a // b).test = [ "c" "d" ];
|
||||||
|
# This used to mean that if a package defined extra nativeBuildInputs, it
|
||||||
|
# would override the ones for building an Octave package (the hook and Octave
|
||||||
|
# itself, causing everything to fail.
|
||||||
|
attrs' = builtins.removeAttrs attrs [ "nativeBuildInputs" ];
|
||||||
|
|
||||||
|
in stdenv.mkDerivation ({
|
||||||
packageName = "${fullLibName}";
|
packageName = "${fullLibName}";
|
||||||
# The name of the octave package ends up being
|
# The name of the octave package ends up being
|
||||||
# "octave-version-package-version"
|
# "octave-version-package-version"
|
||||||
@ -77,11 +93,7 @@ in stdenv.mkDerivation {
|
|||||||
|
|
||||||
requiredOctavePackages = requiredOctavePackages';
|
requiredOctavePackages = requiredOctavePackages';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = nativeBuildInputs';
|
||||||
octave
|
|
||||||
writeRequiredOctavePackagesHook
|
|
||||||
]
|
|
||||||
++ nativeBuildInputs;
|
|
||||||
|
|
||||||
buildInputs = buildInputs ++ requiredOctavePackages';
|
buildInputs = buildInputs ++ requiredOctavePackages';
|
||||||
|
|
||||||
@ -110,4 +122,4 @@ in stdenv.mkDerivation {
|
|||||||
dontInstall = true;
|
dontInstall = true;
|
||||||
|
|
||||||
inherit meta;
|
inherit meta;
|
||||||
}
|
} // attrs')
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, cmake, libGLU, libGL, freeglut
|
{ lib
|
||||||
, Cocoa, OpenGL
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, libGLU
|
||||||
|
, libGL
|
||||||
|
, freeglut
|
||||||
|
, Cocoa
|
||||||
|
, OpenGL
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -37,6 +44,7 @@ stdenv.mkDerivation rec {
|
|||||||
"-DCOCOA_LIBRARY=${Cocoa}/Library/Frameworks/Cocoa.framework"
|
"-DCOCOA_LIBRARY=${Cocoa}/Library/Frameworks/Cocoa.framework"
|
||||||
"-DBUILD_BULLET2_DEMOS=OFF"
|
"-DBUILD_BULLET2_DEMOS=OFF"
|
||||||
"-DBUILD_UNIT_TESTS=OFF"
|
"-DBUILD_UNIT_TESTS=OFF"
|
||||||
|
"-DBUILD_BULLET_ROBOTICS_GUI_EXTRA=OFF"
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, lib, stdenv, zlib, openssl, libuuid, pkg-config }:
|
{ fetchurl, lib, stdenv, zlib, openssl, libuuid, pkg-config, bzip2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "20201230";
|
version = "20201230";
|
||||||
@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ zlib openssl libuuid ];
|
buildInputs = [ zlib openssl libuuid ]
|
||||||
|
++ lib.optionals stdenv.isDarwin [ bzip2 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Library for support of the Expert Witness Compression Format";
|
description = "Library for support of the Expert Witness Compression Format";
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, cmake, gtest, boost, pkg-config, protobuf, icu }:
|
{ lib, stdenv, fetchFromGitHub, cmake, gtest, boost, pkg-config, protobuf, icu, Foundation }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "phonenumber";
|
pname = "phonenumber";
|
||||||
version = "8.11.3";
|
version = "8.12.37";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "googlei18n";
|
owner = "googlei18n";
|
||||||
repo = "libphonenumber";
|
repo = "libphonenumber";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "06y3mh1d1mks6d0ynxp3980g712nkf8l5nyljpybsk326b246hg9";
|
sha256 = "sha256-xLxadSxVY3DjFDQrqj3BuOvdMaKdFSLjocfzovJCBB0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
boost
|
boost
|
||||||
protobuf
|
protobuf
|
||||||
icu
|
icu
|
||||||
];
|
] ++ lib.optional stdenv.isDarwin Foundation;
|
||||||
|
|
||||||
cmakeDir = "../cpp";
|
cmakeDir = "../cpp";
|
||||||
|
|
||||||
@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Google's i18n library for parsing and using phone numbers";
|
description = "Google's i18n library for parsing and using phone numbers";
|
||||||
|
homepage = "https://github.com/google/libphonenumber";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ illegalprime ];
|
maintainers = with maintainers; [ illegalprime ];
|
||||||
};
|
};
|
||||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "An advanced calculator library";
|
description = "An advanced calculator library";
|
||||||
homepage = "http://qalculate.github.io";
|
homepage = "http://qalculate.github.io";
|
||||||
maintainers = with maintainers; [ gebner ];
|
maintainers = with maintainers; [ gebner doronbehar ];
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
@ -9,11 +9,11 @@
|
|||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "audio";
|
pname = "audio";
|
||||||
version = "2.0.2";
|
version = "2.0.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "18lyvwmdy4b9pcv5sm7g17n3is32q23daw8fcsalkf4rj6cc6qdk";
|
sha256 = "1431pf7mhxsrnzrx8r3hsy537kha7jhaligmp2rghwyxhq25hs0r";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "control";
|
pname = "control";
|
||||||
version = "3.3.0";
|
version = "3.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1yksifligq2z3siqw701iq2ydgnj7pnkcw42bfmydcf6fc4drlvy";
|
sha256 = "0vndbzix34vfzdlsz57bgkyg31as4kv6hfg9pwrcqn75bzzjsivw";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "nan";
|
pname = "nan";
|
||||||
version = "3.5.3";
|
version = "3.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1jailahbrh847875vszibn68lp4n5sdy68q51i7hd64qix8rmmpx";
|
sha256 = "1zxdg0yg5jnwq6ppnikd13zprazia6w6zpgw99f62mc03iqk5c4q";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "sparsersb";
|
pname = "sparsersb";
|
||||||
version = "1.0.8";
|
version = "1.0.9";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0nl7qppa1cm51188hqhbfswlih9hmy1yz7v0f5i07z0g0kbd62xw";
|
sha256 = "0jyy2m7wylzyjqj9n6mjizhj0ccq8xnxm2g6pdlrmncxq1401khd";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "tsa";
|
pname = "tsa";
|
||||||
version = "4.6.2";
|
version = "4.6.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0p2cjszzjwhp4ih3q3r67qnikgxc0fwxc12p3727jbdvzq2h10mn";
|
sha256 = "1pbxq77xc7pn0ki6rpijlq9v7inn0hn2adkx1skgwffl7pivrwsl";
|
||||||
};
|
};
|
||||||
|
|
||||||
requiredOctavePackages = [
|
requiredOctavePackages = [
|
||||||
|
@ -2,17 +2,32 @@
|
|||||||
, lib
|
, lib
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, zeromq
|
, zeromq
|
||||||
|
, pkg-config
|
||||||
|
, autoreconfHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildOctavePackage rec {
|
buildOctavePackage rec {
|
||||||
pname = "zeromq";
|
pname = "zeromq";
|
||||||
version = "1.5.2";
|
version = "1.5.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
sha256 = "18h1039ri7dr37jv20cvj5vhw7b57frrda0hhbvlgixinbqmn9j7";
|
sha256 = "1h0pb2pqbnyiavf7r05j8bqxqd8syz16ab48hc74nlnx727anfwl";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
preAutoreconf = ''
|
||||||
|
cd src
|
||||||
|
'';
|
||||||
|
|
||||||
|
postAutoreconf = ''
|
||||||
|
cd ..
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
autoreconfHook
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
zeromq
|
zeromq
|
||||||
];
|
];
|
||||||
|
@ -32,14 +32,14 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
pytestFlagsArray = [
|
disabledTestPaths = [
|
||||||
# disable tests which require being connected to the satellite
|
# disable tests which require being connected to the satellite
|
||||||
"--ignore=blocksatcli/test_satip.py"
|
"blocksatcli/test_satip.py"
|
||||||
"--ignore=blocksatcli/api/test_listen.py"
|
"blocksatcli/api/test_listen.py"
|
||||||
"--ignore=blocksatcli/api/test_msg.py"
|
"blocksatcli/api/test_msg.py"
|
||||||
"--ignore=blocksatcli/api/test_net.py"
|
"blocksatcli/api/test_net.py"
|
||||||
# disable tests which require being online
|
# disable tests which require being online
|
||||||
"--ignore=blocksatcli/api/test_order.py"
|
"blocksatcli/api/test_order.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "blocksatcli" ];
|
pythonImportsCheck = [ "blocksatcli" ];
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, poppler }:
|
{ lib, stdenv, buildPythonPackage, fetchPypi, poppler }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pdftotext";
|
pname = "pdftotext";
|
||||||
@ -9,6 +9,11 @@ buildPythonPackage rec {
|
|||||||
sha256 = "a067c121654917ecbe07fbd71c807c34bbdb1ea029e269ddd11925ee7e191d3f";
|
sha256 = "a067c121654917ecbe07fbd71c807c34bbdb1ea029e269ddd11925ee7e191d3f";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace '= brew_poppler_include()' '= "${lib.getDev poppler}/include", "${lib.getLib poppler}/lib"'
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [ poppler ];
|
buildInputs = [ poppler ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyezviz";
|
pname = "pyezviz";
|
||||||
version = "0.1.9.9";
|
version = "0.2.0.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
owner = "baqs";
|
owner = "baqs";
|
||||||
repo = "pyEzviz";
|
repo = "pyEzviz";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-dhYzzsGNVS8qFymBhFWWacWBXVS7fZHZYtQTeTecYsk=";
|
sha256 = "sha256-aXqq3a+3PopW4vNA+O0K5OxpcHyJu2YMBJgEya0HKI0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, scipy
|
, scipy
|
||||||
@ -52,6 +53,13 @@ buildPythonPackage rec {
|
|||||||
export FONTCONFIG_FILE=${fontsConf}
|
export FONTCONFIG_FILE=${fontsConf}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
disabledTests = lib.optionals (!(stdenv.isi686 || stdenv.isx86_64)) [
|
||||||
|
# small precision-related differences on other architectures,
|
||||||
|
# upstream doesn't consider it serious.
|
||||||
|
# https://github.com/pyqtgraph/pyqtgraph/issues/2110
|
||||||
|
"test_PolyLineROI"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Scientific Graphics and GUI Library for Python";
|
description = "Scientific Graphics and GUI Library for Python";
|
||||||
homepage = "https://www.pyqtgraph.org/";
|
homepage = "https://www.pyqtgraph.org/";
|
||||||
|
@ -36,6 +36,7 @@ buildPythonPackage rec {
|
|||||||
# Reading the changelog I don't expect an API break in pycodestyle and pyflakes
|
# Reading the changelog I don't expect an API break in pycodestyle and pyflakes
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace "pycodestyle>=2.6.0,<2.7.0" "pycodestyle>=2.6.0,<2.8.0" \
|
--replace "pycodestyle>=2.6.0,<2.7.0" "pycodestyle>=2.6.0,<2.8.0" \
|
||||||
|
--replace "jedi>=0.17.2,<0.18.0" "jedi>=0.17.2,<0.19.0" \
|
||||||
--replace "pyflakes>=2.2.0,<2.3.0" "pyflakes>=2.2.0,<2.4.0"
|
--replace "pyflakes>=2.2.0,<2.3.0" "pyflakes>=2.2.0,<2.4.0"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -87,5 +88,8 @@ buildPythonPackage rec {
|
|||||||
# not compatible with jedi 0.18.0
|
# not compatible with jedi 0.18.0
|
||||||
broken = true;
|
broken = true;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
|
# no longer maintained
|
||||||
|
# see https://github.com/palantir/python-language-server/pull/918#issuecomment-817361554
|
||||||
|
broken = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -51,6 +51,12 @@ stdenv.mkDerivation rec {
|
|||||||
chmod -R +w libr/asm/arch/arm/v35arm64/arch-arm64
|
chmod -R +w libr/asm/arch/arm/v35arm64/arch-arm64
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postFixup = lib.optionalString stdenv.isDarwin ''
|
||||||
|
for file in $out/bin/rasm2 $out/bin/ragg2 $out/bin/rabin2 $out/lib/libr_asm.${version}.dylib; do
|
||||||
|
install_name_tool -change libcapstone.4.dylib ${capstone}/lib/libcapstone.4.dylib $file
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
install -D -m755 $src/binr/r2pm/r2pm $out/bin/r2pm
|
install -D -m755 $src/binr/r2pm/r2pm $out/bin/r2pm
|
||||||
'';
|
'';
|
||||||
@ -59,7 +65,10 @@ stdenv.mkDerivation rec {
|
|||||||
makeFlags = [
|
makeFlags = [
|
||||||
"GITTAP=${version}"
|
"GITTAP=${version}"
|
||||||
"RANLIB=${stdenv.cc.bintools.bintools}/bin/${stdenv.cc.bintools.targetPrefix}ranlib"
|
"RANLIB=${stdenv.cc.bintools.bintools}/bin/${stdenv.cc.bintools.targetPrefix}ranlib"
|
||||||
|
"CC=${stdenv.cc.targetPrefix}cc"
|
||||||
|
"HOST_CC=${stdenv.cc.targetPrefix}cc"
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-sysmagic"
|
"--with-sysmagic"
|
||||||
"--with-syszip"
|
"--with-syszip"
|
||||||
@ -94,11 +103,11 @@ stdenv.mkDerivation rec {
|
|||||||
xxHash
|
xxHash
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "unix-like reverse engineering framework and commandline tools";
|
description = "unix-like reverse engineering framework and commandline tools";
|
||||||
homepage = "http://radare.org/";
|
homepage = "https://radare.org/";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with lib.maintainers; [ raskin makefu mic92 ];
|
maintainers = with maintainers; [ raskin makefu mic92 arkivm ];
|
||||||
platforms = with lib.platforms; linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ktlint";
|
pname = "ktlint";
|
||||||
version = "0.42.1";
|
version = "0.43.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/pinterest/ktlint/releases/download/${version}/ktlint";
|
url = "https://github.com/pinterest/ktlint/releases/download/${version}/ktlint";
|
||||||
sha256 = "sha256-ASQuMWH6stUupJkfOpzVMs+c+xq7OWbVxGh6IY2zd70=";
|
sha256 = "0vrfxmqnwwgij8hrcbzp3j0vg90w55r6kw4zhqmjsnnsg29gc82s";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
# Get rid of sbin
|
# Get rid of sbin
|
||||||
sed -i 's/sbin/bin/g' $out/lib/icinga2/safe-reload
|
sed -i 's/sbin/bin/g' $out/lib/icinga2/safe-reload
|
||||||
sed -i 's/sbin/bin/g' $out/bin/icinga2
|
sed -i "2s:.*:ICINGA2_BIN=$out/bin/icinga2:" $out/bin/icinga2
|
||||||
rm $out/sbin
|
rm $out/sbin
|
||||||
|
|
||||||
${lib.optionalString withMysql ''
|
${lib.optionalString withMysql ''
|
||||||
|
@ -25,6 +25,8 @@ let
|
|||||||
url = "https://raw.githubusercontent.com/skk-dev/dict/8b35d07a7d2044d48b063d2774d9f9d00bb7cb48/SKK-JISYO.assoc";
|
url = "https://raw.githubusercontent.com/skk-dev/dict/8b35d07a7d2044d48b063d2774d9f9d00bb7cb48/SKK-JISYO.assoc";
|
||||||
sha256 = "1smcbyv6srrhnpl7ic9nqds9nz3g2dgqngmhzkrdlwmvcpvakp1v";
|
sha256 = "1smcbyv6srrhnpl7ic9nqds9nz3g2dgqngmhzkrdlwmvcpvakp1v";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iconvBin = if stdenv.isDarwin then libiconv else buildPackages.stdenv.cc.libc;
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -49,7 +51,7 @@ stdenv.mkDerivation {
|
|||||||
for src in $srcs; do
|
for src in $srcs; do
|
||||||
dst=$out/share/$(dictname $src)
|
dst=$out/share/$(dictname $src)
|
||||||
echo ";;; -*- coding: utf-8 -*-" > $dst # libskk requires this on the first line
|
echo ";;; -*- coding: utf-8 -*-" > $dst # libskk requires this on the first line
|
||||||
${lib.getBin buildPackages.stdenv.cc.libc}/bin/iconv \
|
${lib.getBin iconvBin}/bin/iconv \
|
||||||
-f EUC-JP -t UTF-8 $src | skkdic-expr2 >> $dst
|
-f EUC-JP -t UTF-8 $src | skkdic-expr2 >> $dst
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, which
|
, which
|
||||||
, enableStatic ? stdenv.hostPlatform.isStatic
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
||||||
}:
|
}:
|
||||||
@ -16,6 +17,14 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-HkDgWwHoRWCNtWyfP4sj3veEd+KT5J7yL4J4Z/hJcrE=";
|
sha256 = "sha256-HkDgWwHoRWCNtWyfP4sj3veEd+KT5J7yL4J4Z/hJcrE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = lib.optionals stdenv.cc.isClang [
|
||||||
|
# Fix clang configuration; remove with next release
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/rhash/RHash/commit/4dc506066cf1727b021e6352535a8bb315c3f8dc.patch";
|
||||||
|
sha256 = "0i5jz2s37h278c8d36pzphhp8rjy660zmhpg2cqlp960f6ny8wwj";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ which ];
|
nativeBuildInputs = [ which ];
|
||||||
|
|
||||||
# configure script is not autotools-based, doesn't support these options
|
# configure script is not autotools-based, doesn't support these options
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
, skk-dicts
|
, skk-dicts
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
iconvBin = if stdenv.isDarwin then libiconv else buildPackages.stdenv.cc.libc;
|
||||||
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "cmigemo";
|
pname = "cmigemo";
|
||||||
version = "1.3e";
|
version = "1.3e";
|
||||||
@ -25,7 +28,7 @@ stdenv.mkDerivation {
|
|||||||
makeFlags = [ "INSTALL=install" ];
|
makeFlags = [ "INSTALL=install" ];
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
makeFlagsArray+=(FILTER_UTF8="${lib.getBin buildPackages.stdenv.cc.libc}/bin/iconv -t utf-8 -f cp932")
|
makeFlagsArray+=(FILTER_UTF8="${lib.getBin iconvBin}/bin/iconv -t utf-8 -f cp932")
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildFlags = [ (if stdenv.isDarwin then "osx-all" else "gcc-all") ];
|
buildFlags = [ (if stdenv.isDarwin then "osx-all" else "gcc-all") ];
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "l2md";
|
pname = "l2md";
|
||||||
version = "unstable-2020-07-31";
|
version = "unstable-2021-10-27";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://git.kernel.org/pub/scm/linux/kernel/git/dborkman/l2md.git";
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/dborkman/l2md.git";
|
||||||
rev = "2b9fae141fc2129940e0337732a35a3fc1c33455";
|
rev = "9db252bc1716ebaf0abd3a47a59ea78e4e6253d6";
|
||||||
sha256 = "PNNoD3a+rJwKH6wbOkvVU1IW4+xF7+zQaLFAlyLlYOI=";
|
sha256 = "sha256-H/leDUwQM55akyXsmTnI2YsnG4i1KQtf4bBt1fizy8E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libgit2 ];
|
buildInputs = [ libgit2 ];
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "pn";
|
pname = "pn";
|
||||||
version = "unstable-2021-01-28";
|
version = "0.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Orange-OpenSource";
|
owner = "Orange-OpenSource";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "41e1215397129ed0d42b5f137fb35b5e0648edda";
|
rev = "v${version}";
|
||||||
sha256 = "1g8r7y230k01ghraa55g1bhz3fiz6bjdgcsddy2dfa5ih8c4s3jm";
|
sha256 = "sha256-vRF9MPcw/hCreHVLD6QB7g1r0wQiZv1xrfzIHj1Yf9M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
@ -6851,6 +6851,7 @@ with pkgs;
|
|||||||
|
|
||||||
libcryptui = callPackage ../development/libraries/libcryptui {
|
libcryptui = callPackage ../development/libraries/libcryptui {
|
||||||
autoreconfHook = buildPackages.autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
|
gtk3 = if stdenv.isDarwin then gtk3-x11 else gtk3;
|
||||||
};
|
};
|
||||||
|
|
||||||
libshumate = callPackage ../development/libraries/libshumate { };
|
libshumate = callPackage ../development/libraries/libshumate { };
|
||||||
@ -18103,7 +18104,9 @@ with pkgs;
|
|||||||
|
|
||||||
libpgf = callPackage ../development/libraries/libpgf { };
|
libpgf = callPackage ../development/libraries/libpgf { };
|
||||||
|
|
||||||
libphonenumber = callPackage ../development/libraries/libphonenumber { };
|
libphonenumber = callPackage ../development/libraries/libphonenumber {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Foundation;
|
||||||
|
};
|
||||||
|
|
||||||
libplacebo = callPackage ../development/libraries/libplacebo { };
|
libplacebo = callPackage ../development/libraries/libplacebo { };
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ makeScope newScope (self:
|
|||||||
windows = callPackage ../development/octave-modules/windows { };
|
windows = callPackage ../development/octave-modules/windows { };
|
||||||
|
|
||||||
zeromq = callPackage ../development/octave-modules/zeromq {
|
zeromq = callPackage ../development/octave-modules/zeromq {
|
||||||
inherit (pkgs) zeromq;
|
inherit (pkgs) zeromq autoreconfHook;
|
||||||
};
|
};
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user