Merge staging-next into staging
This commit is contained in:
commit
a6f7ba3752
@ -124,6 +124,8 @@ rec {
|
|||||||
then "${qemu-user}/bin/qemu-${final.qemuArch}"
|
then "${qemu-user}/bin/qemu-${final.qemuArch}"
|
||||||
else if final.isWasi
|
else if final.isWasi
|
||||||
then "${pkgs.wasmtime}/bin/wasmtime"
|
then "${pkgs.wasmtime}/bin/wasmtime"
|
||||||
|
else if final.isMmix
|
||||||
|
then "${pkgs.mmixware}/bin/mmix"
|
||||||
else throw "Don't know how to run ${final.config} executables.";
|
else throw "Don't know how to run ${final.config} executables.";
|
||||||
|
|
||||||
} // mapAttrs (n: v: v final.parsed) inspect.predicates
|
} // mapAttrs (n: v: v final.parsed) inspect.predicates
|
||||||
|
@ -17,8 +17,7 @@
|
|||||||
# The serial ports listed here are:
|
# The serial ports listed here are:
|
||||||
# - ttyS0: for Tegra (Jetson TX1)
|
# - ttyS0: for Tegra (Jetson TX1)
|
||||||
# - ttyAMA0: for QEMU's -machine virt
|
# - ttyAMA0: for QEMU's -machine virt
|
||||||
# Also increase the amount of CMA to ensure the virtual console on the RPi3 works.
|
boot.kernelParams = ["console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
|
||||||
boot.kernelParams = ["cma=32M" "console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
# Allows early (earlier) modesetting for the Raspberry Pi
|
# Allows early (earlier) modesetting for the Raspberry Pi
|
||||||
@ -30,13 +29,25 @@
|
|||||||
sdImage = {
|
sdImage = {
|
||||||
populateFirmwareCommands = let
|
populateFirmwareCommands = let
|
||||||
configTxt = pkgs.writeText "config.txt" ''
|
configTxt = pkgs.writeText "config.txt" ''
|
||||||
|
[pi3]
|
||||||
kernel=u-boot-rpi3.bin
|
kernel=u-boot-rpi3.bin
|
||||||
|
|
||||||
|
[pi4]
|
||||||
|
kernel=u-boot-rpi4.bin
|
||||||
|
enable_gic=1
|
||||||
|
armstub=armstub8-gic.bin
|
||||||
|
|
||||||
|
# Otherwise the resolution will be weird in most cases, compared to
|
||||||
|
# what the pi3 firmware does by default.
|
||||||
|
disable_overscan=1
|
||||||
|
|
||||||
|
[all]
|
||||||
# Boot in 64-bit mode.
|
# Boot in 64-bit mode.
|
||||||
arm_64bit=1
|
arm_64bit=1
|
||||||
|
|
||||||
# U-Boot used to need this to work, regardless of whether UART is actually used or not.
|
# U-Boot needs this to work, regardless of whether UART is actually used or not.
|
||||||
# TODO: check when/if this can be removed.
|
# Look in arch/arm/mach-bcm283x/Kconfig in the U-Boot tree to see if this is still
|
||||||
|
# a requirement in the future.
|
||||||
enable_uart=1
|
enable_uart=1
|
||||||
|
|
||||||
# Prevent the firmware from smashing the framebuffer setup done by the mainline kernel
|
# Prevent the firmware from smashing the framebuffer setup done by the mainline kernel
|
||||||
@ -45,8 +56,17 @@
|
|||||||
'';
|
'';
|
||||||
in ''
|
in ''
|
||||||
(cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/firmware/)
|
(cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/firmware/)
|
||||||
cp ${pkgs.ubootRaspberryPi3_64bit}/u-boot.bin firmware/u-boot-rpi3.bin
|
|
||||||
|
# Add the config
|
||||||
cp ${configTxt} firmware/config.txt
|
cp ${configTxt} firmware/config.txt
|
||||||
|
|
||||||
|
# Add pi3 specific files
|
||||||
|
cp ${pkgs.ubootRaspberryPi3_64bit}/u-boot.bin firmware/u-boot-rpi3.bin
|
||||||
|
|
||||||
|
# Add pi4 specific files
|
||||||
|
cp ${pkgs.ubootRaspberryPi4_64bit}/u-boot.bin firmware/u-boot-rpi4.bin
|
||||||
|
cp ${pkgs.raspberrypi-armstubs}/armstub8-gic.bin firmware/armstub8-gic.bin
|
||||||
|
cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/bcm2711-rpi-4-b.dtb firmware/
|
||||||
'';
|
'';
|
||||||
populateRootCommands = ''
|
populateRootCommands = ''
|
||||||
mkdir -p ./files/boot
|
mkdir -p ./files/boot
|
||||||
|
@ -3,36 +3,6 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ./sd-image-aarch64.nix ];
|
||||||
../../profiles/base.nix
|
|
||||||
../../profiles/installation-device.nix
|
|
||||||
./sd-image.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader.grub.enable = false;
|
|
||||||
boot.loader.raspberryPi.enable = true;
|
|
||||||
boot.loader.raspberryPi.version = 4;
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
||||||
|
|
||||||
boot.consoleLogLevel = lib.mkDefault 7;
|
|
||||||
|
|
||||||
sdImage = {
|
|
||||||
firmwareSize = 128;
|
|
||||||
firmwarePartitionName = "NIXOS_BOOT";
|
|
||||||
# This is a hack to avoid replicating config.txt from boot.loader.raspberryPi
|
|
||||||
populateFirmwareCommands =
|
|
||||||
"${config.system.build.installBootLoader} ${config.system.build.toplevel} -d ./firmware";
|
|
||||||
# As the boot process is done entirely in the firmware partition.
|
|
||||||
populateRootCommands = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot/firmware" = {
|
|
||||||
# This effectively "renames" the attrsOf entry set in sd-image.nix
|
|
||||||
mountPoint = "/boot";
|
|
||||||
neededForBoot = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# the installation media is also the installation target,
|
|
||||||
# so we don't want to provide the installation configuration.nix.
|
|
||||||
installer.cloneConfig = false;
|
|
||||||
}
|
}
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
, SDL2, alsaLib, libjack2, lhasa, perl, rtmidi, zlib, zziplib }:
|
, SDL2, alsaLib, libjack2, lhasa, perl, rtmidi, zlib, zziplib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.02.00";
|
version = "1.03.00";
|
||||||
pname = "milkytracker";
|
pname = "milkytracker";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "milkytracker";
|
owner = "milkytracker";
|
||||||
repo = "MilkyTracker";
|
repo = "MilkyTracker";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "05a6d7l98k9i82dwrgi855dnccm3f2lkb144gi244vhk1156n0ca";
|
sha256 = "025fj34gq2kmkpwcswcyx7wdxb89vm944dh685zi4bxx0hz16vvk";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
|
nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
|
||||||
|
@ -1,26 +1,26 @@
|
|||||||
{ stdenv, fetchFromGitHub,
|
{ stdenv, fetchFromGitHub, pkg-config, lv2, fftw, cmake, libXpm
|
||||||
automake, pkgconfig, lv2, fftw, cmake, xorg, libjack2, libsamplerate, libsndfile
|
, libXft, libjack2, libsamplerate, libsndfile }:
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
repo = "rkrlv2";
|
pname = "rkrlv2";
|
||||||
name = "${repo}-b2.0";
|
version = "beta_3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ssj71";
|
owner = "ssj71";
|
||||||
inherit repo;
|
repo = pname;
|
||||||
rev = "beta_2";
|
rev = version;
|
||||||
sha256 = "128jcilbrd1l65c01w2bazsb21x78mng0jjkhi3x9crf1n9qbh2m";
|
sha256 = "WjpPNUEYw4aGrh57J+7kkxKFXgCJWNaWAmueFbNUJJo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
buildInputs = with xorg; [ automake lv2 fftw cmake libXpm libjack2 libsamplerate libsndfile libXft ];
|
buildInputs = [ libXft libXpm lv2 fftw libjack2 libsamplerate libsndfile ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Rakarrak effects ported to LV2";
|
description = "Rakarrak effects ported to LV2";
|
||||||
homepage = "https://github.com/ssj71/rkrlv2";
|
homepage = "https://github.com/ssj71/rkrlv2";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl2Only;
|
||||||
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
maintainers = [ maintainers.joelmo ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.unix;
|
||||||
|
broken = stdenv.isAarch64; # g++: error: unrecognized command line option '-mfpmath=sse'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -4,19 +4,21 @@ let
|
|||||||
throwSystem = throw "Unsupported system: ${system}";
|
throwSystem = throw "Unsupported system: ${system}";
|
||||||
|
|
||||||
pname = "keeweb";
|
pname = "keeweb";
|
||||||
version = "1.16.0";
|
version = "1.16.5";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
suffix = {
|
suffix = {
|
||||||
x86_64-linux = "linux.AppImage";
|
x86_64-linux = "linux.AppImage";
|
||||||
x86_64-darwin = "mac.dmg";
|
x86_64-darwin = "mac.x64.dmg";
|
||||||
|
aarch64-darwin = "mac.arm64.dmg";
|
||||||
}.${system} or throwSystem;
|
}.${system} or throwSystem;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.${suffix}";
|
url = "https://github.com/keeweb/keeweb/releases/download/v${version}/KeeWeb-${version}.${suffix}";
|
||||||
sha256 = {
|
sha256 = {
|
||||||
x86_64-linux = "1pivic7n5nv00s8bb51i2jz2mxgjn92hkc8n0p8662ai1cdng47g";
|
x86_64-linux = "18qcr8zyn20n5zrrha0qwgq2ic10bp189fps87lbnmcjknrkac9g";
|
||||||
x86_64-darwin = "0q6k0qgkgzid9yjbfsfpp8l9dr0n8xp25a4jf2bxwickm4irs9mz";
|
x86_64-darwin = "0crpjkcqgs7q5c814bx2npjh9kpyyb87yagm5wcy9j21kwrbqv6k";
|
||||||
|
aarch64-darwin = "1wkf9inrm5qg0c4xrk0s97mx5j21xvlqwwkvydl513gyfzi2g9gp";
|
||||||
}.${system} or throwSystem;
|
}.${system} or throwSystem;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -29,7 +31,7 @@ let
|
|||||||
homepage = "https://keeweb.info/";
|
homepage = "https://keeweb.info/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ sikmir ];
|
maintainers = with maintainers; [ sikmir ];
|
||||||
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
linux = appimageTools.wrapType2 rec {
|
linux = appimageTools.wrapType2 rec {
|
||||||
|
@ -15,11 +15,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "teams";
|
pname = "teams";
|
||||||
version = "1.3.00.25560";
|
version = "1.3.00.30857";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb";
|
url = "https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb";
|
||||||
sha256 = "0kpcd9q6v2qh0dzddykisdbi3djbxj2rl70wchlzrb6bx95hkzmc";
|
sha256 = "06r48h1fr2si2g5ng8hsnbcmr70iapnafj21v5bzrzzrigzb2n2h";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ dpkg autoPatchelfHook wrapGAppsHook ];
|
nativeBuildInputs = [ dpkg autoPatchelfHook wrapGAppsHook ];
|
||||||
|
@ -24,13 +24,13 @@
|
|||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "mailnag";
|
pname = "mailnag";
|
||||||
version = "2.0.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pulb";
|
owner = "pulb";
|
||||||
repo = "mailnag";
|
repo = "mailnag";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0q97v9i96br22z3h6r2mz79i68ib8m8x42yxky78szfrf8j60i30";
|
sha256 = "08jqs3v01a9gkjca9xgjidhdgvnlm4541z9bwh9m3k5p2g76sz96";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -49,7 +49,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext
|
gettext
|
||||||
wrapGAppsHook
|
wrapGAppsHook
|
||||||
# To later add plugins to
|
# To later add plugins to
|
||||||
xorg.lndir
|
xorg.lndir
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, libusb1
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, libusb1
|
||||||
, darwin
|
, darwin }:
|
||||||
, gnum4
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hidapi";
|
pname = "hidapi";
|
||||||
@ -14,13 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1nr4z4b10vpbh3ss525r7spz4i43zim2ba5qzfl15dgdxshxxivb";
|
sha256 = "1nr4z4b10vpbh3ss525r7spz4i43zim2ba5qzfl15dgdxshxxivb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
autoreconfHook
|
|
||||||
pkgconfig
|
|
||||||
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
||||||
# Could be added always, but added conditionally here to avoid large rebuild
|
|
||||||
gnum4
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [ ]
|
buildInputs = [ ]
|
||||||
++ stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ];
|
++ stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ];
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ mkDerivation, lib
|
{ mkDerivation, lib
|
||||||
, extra-cmake-modules
|
, extra-cmake-modules
|
||||||
, hunspell, qtbase, qttools
|
, aspell, qtbase, qttools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
@ -10,6 +10,6 @@ mkDerivation {
|
|||||||
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
|
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ extra-cmake-modules ];
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||||||
buildInputs = [ hunspell qttools ];
|
buildInputs = [ aspell qttools ];
|
||||||
propagatedBuildInputs = [ qtbase ];
|
propagatedBuildInputs = [ qtbase ];
|
||||||
}
|
}
|
||||||
|
18
pkgs/development/ocaml-modules/irmin/chunk.nix
Normal file
18
pkgs/development/ocaml-modules/irmin/chunk.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ lib, buildDunePackage, irmin, irmin-mem, irmin-test }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
|
||||||
|
pname = "irmin-chunk";
|
||||||
|
inherit (irmin) version src useDune2;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ irmin ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ irmin-mem irmin-test ];
|
||||||
|
|
||||||
|
meta = irmin.meta // {
|
||||||
|
description = "Irmin backend which allow to store values into chunks";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -15,26 +15,25 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "3.3.1";
|
version = "3.3.5";
|
||||||
pname = "ovito";
|
pname = "ovito";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
owner = "stuko";
|
owner = "stuko";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0rm1qxa0fanaaqg0idr6rf2s2xlbyn1dzjzwh3rddy9mgl60lj2h";
|
sha256 = "2tptLK0RU0afSFFE7uzL8bZ5j+nyRyh97ujJAHFh0wQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ffmpeg netcdf qscintilla zlib boost zlib git fftw hdf5 libssh qt5.qtbase qt5.qtsvg ];
|
nativeBuildInputs = [ cmake git ];
|
||||||
|
buildInputs = [ ffmpeg netcdf qscintilla zlib boost zlib fftw hdf5 libssh qt5.qtbase qt5.qtsvg ];
|
||||||
|
|
||||||
propagatedBuildInputs = with python.pkgs; [ sphinx numpy sip pyqt5 matplotlib ase ];
|
propagatedBuildInputs = with python.pkgs; [ sphinx numpy sip pyqt5 matplotlib ase ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Scientific visualization and analysis software for atomistic simulation data";
|
description = "Scientific visualization and analysis software for atomistic simulation data";
|
||||||
homepage = "https://www.ovito.org";
|
homepage = "https://www.ovito.org";
|
||||||
license = licenses.gpl3;
|
license = with licenses; [ gpl3Only mit ];
|
||||||
maintainers = with maintainers; [ costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
# ensures not built on hydra
|
# ensures not built on hydra
|
||||||
# https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048
|
# https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048
|
||||||
|
@ -13,12 +13,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "smart_open";
|
pname = "smart_open";
|
||||||
version = "4.0.1";
|
version = "4.1.0";
|
||||||
disabled = pythonOlder "3.5";
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "49396d86de8e0d609ec40422c59f837dd944dcdf727feed6f2ff8cbdc0e3bc8e";
|
sha256 = "26af5c1a3f2b76aab8c3200310f0fc783790ec5a231ffeec102e620acdd6262e";
|
||||||
};
|
};
|
||||||
|
|
||||||
# nixpkgs version of moto is >=1.2.0, remove version pin to fix build
|
# nixpkgs version of moto is >=1.2.0, remove version pin to fix build
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildGoModule
|
, buildGoModule
|
||||||
, buildFHSUserEnv
|
, buildFHSUserEnv
|
||||||
|
, binutils
|
||||||
, dejavu_fonts
|
, dejavu_fonts
|
||||||
, pkgconfig
|
, pkg-config
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, stdenv
|
|
||||||
, roboto
|
, roboto
|
||||||
, writeScript
|
, writeScript
|
||||||
, xorg
|
, xorg
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "hover";
|
pname = "hover";
|
||||||
version = "0.43.0";
|
version = "0.46.1";
|
||||||
|
|
||||||
libs = with xorg; [
|
libs = with xorg; [
|
||||||
libX11.dev
|
libX11.dev
|
||||||
@ -36,23 +36,23 @@ let
|
|||||||
hover = buildGoModule rec {
|
hover = buildGoModule rec {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A build tool to run Flutter applications on desktop";
|
description = "A build tool to run Flutter applications on desktop";
|
||||||
homepage = "https://github.com/go-flutter-desktop/hover";
|
homepage = "https://github.com/go-flutter-desktop/hover";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.ericdallo maintainers.thiagokokada];
|
maintainers = [ maintainers.ericdallo maintainers.thiagokokada];
|
||||||
};
|
};
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
vendorSha256 = "1wr08phjm87dxim47i8449rmq5wfscvjyz65g3lxmv468x209pam";
|
vendorSha256 = "1ixfmhp5g57hn23zyf85hy9jnyadayhdbalj4d0bx4q4p5c9qchi";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "go-flutter-desktop";
|
owner = "go-flutter-desktop";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
sha256 = "0iw6sxg86wfdbihl2hxzn43ppdzl1p7g5b9wl8ac3xa9ix8759ax";
|
sha256 = "04f3dx2dcllfrw3ay1sbb72pj18ln7bxi9rrcaahqhsd7bn2ff9k";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ addOpenGLRunpath makeWrapper ];
|
nativeBuildInputs = [ addOpenGLRunpath makeWrapper ];
|
||||||
@ -75,7 +75,7 @@ let
|
|||||||
chmod -R a+rx $out/share/assets
|
chmod -R a+rx $out/share/assets
|
||||||
|
|
||||||
wrapProgram "$out/bin/hover" \
|
wrapProgram "$out/bin/hover" \
|
||||||
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath libs}
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath libs}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
@ -87,12 +87,13 @@ in
|
|||||||
buildFHSUserEnv rec {
|
buildFHSUserEnv rec {
|
||||||
name = pname;
|
name = pname;
|
||||||
targetPkgs = pkgs: [
|
targetPkgs = pkgs: [
|
||||||
|
binutils
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
flutter
|
flutter
|
||||||
gcc
|
gcc
|
||||||
go
|
go
|
||||||
hover
|
hover
|
||||||
pkgconfig
|
pkg-config
|
||||||
roboto
|
roboto
|
||||||
] ++ libs;
|
] ++ libs;
|
||||||
|
|
||||||
|
@ -1,20 +1,23 @@
|
|||||||
{ lib, python3Packages, fetchFromGitHub }:
|
{ lib, python3Packages, fetchFromGitHub }:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3Packages.buildPythonPackage rec {
|
||||||
name = "mpfshell-${version}";
|
pname = "mpfshell-unstable";
|
||||||
version = "0.8.1";
|
version = "2020-04-11";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "wendlers";
|
owner = "wendlers";
|
||||||
repo = "mpfshell";
|
repo = "mpfshell";
|
||||||
rev = version;
|
rev = "429469fcccbda770fddf7a4277f5db92b1217664";
|
||||||
sha256 = "1n4ap4yfii54y125f9n9krc0lc0drwg3hsq4z6g89xbswdx9sygr";
|
sha256 = "0md6ih9vp65dacqy8gki3b2p4v76xb9ijqmxymk4b4f9z684x2m7";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
pyserial colorama websocket_client
|
pyserial colorama websocket_client
|
||||||
];
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "mp.mpfshell" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/wendlers/mpfshell";
|
homepage = "https://github.com/wendlers/mpfshell";
|
||||||
description = "A simple shell based file explorer for ESP8266 Micropython based devices";
|
description = "A simple shell based file explorer for ESP8266 Micropython based devices";
|
||||||
|
@ -4,13 +4,13 @@ with stdenv.lib;
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "trackballs";
|
pname = "trackballs";
|
||||||
version = "1.3.1";
|
version = "1.3.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "trackballs";
|
owner = "trackballs";
|
||||||
repo = "trackballs";
|
repo = "trackballs";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1yjzz50r57aahy7wcbsmhrd40abzyriq40j49225ya7m9g28vmgl";
|
sha256 = "G+KfQgqk+iI+Beb/ZRul2ArCBcvwYQ/ftEWzdrtwb18=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext libGLU libGL ];
|
buildInputs = [ cmake zlib SDL2 SDL2_ttf SDL2_mixer SDL2_image guile gettext libGLU libGL ];
|
||||||
|
@ -314,6 +314,18 @@ in {
|
|||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ubootRaspberryPi4_32bit = buildUBoot {
|
||||||
|
defconfig = "rpi_4_32b_defconfig";
|
||||||
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
|
filesToInstall = ["u-boot.bin"];
|
||||||
|
};
|
||||||
|
|
||||||
|
ubootRaspberryPi4_64bit = buildUBoot {
|
||||||
|
defconfig = "rpi_4_defconfig";
|
||||||
|
extraMeta.platforms = ["aarch64-linux"];
|
||||||
|
filesToInstall = ["u-boot.bin"];
|
||||||
|
};
|
||||||
|
|
||||||
ubootRaspberryPiZero = buildUBoot {
|
ubootRaspberryPiZero = buildUBoot {
|
||||||
defconfig = "rpi_0_w_defconfig";
|
defconfig = "rpi_0_w_defconfig";
|
||||||
extraMeta.platforms = ["armv6l-linux"];
|
extraMeta.platforms = ["armv6l-linux"];
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
907th/vim-auto-save
|
907th/vim-auto-save
|
||||||
aca/completion-tabnine
|
aca/completion-tabnine
|
||||||
|
ackyshake/Spacegray.vim@main
|
||||||
airblade/vim-gitgutter
|
airblade/vim-gitgutter
|
||||||
airblade/vim-rooter
|
airblade/vim-rooter
|
||||||
ajh17/Spacegray.vim
|
|
||||||
aklt/plantuml-syntax
|
aklt/plantuml-syntax
|
||||||
altercation/vim-colors-solarized
|
altercation/vim-colors-solarized
|
||||||
alvan/vim-closetag
|
alvan/vim-closetag
|
||||||
@ -34,7 +34,7 @@ bling/vim-bufferline
|
|||||||
blueyed/vim-diminactive
|
blueyed/vim-diminactive
|
||||||
bogado/file-line
|
bogado/file-line
|
||||||
bohlender/vim-smt2
|
bohlender/vim-smt2
|
||||||
brennanfee/vim-gui-position
|
brennanfee/vim-gui-position@main
|
||||||
bronson/vim-trailing-whitespace
|
bronson/vim-trailing-whitespace
|
||||||
brooth/far.vim
|
brooth/far.vim
|
||||||
buoto/gotests-vim
|
buoto/gotests-vim
|
||||||
@ -399,7 +399,7 @@ nvim-treesitter/nvim-treesitter-textobjects
|
|||||||
nvim-treesitter/playground
|
nvim-treesitter/playground
|
||||||
ocaml/vim-ocaml
|
ocaml/vim-ocaml
|
||||||
octol/vim-cpp-enhanced-highlight
|
octol/vim-cpp-enhanced-highlight
|
||||||
Olical/conjure
|
Olical/conjure@main
|
||||||
OrangeT/vim-csharp
|
OrangeT/vim-csharp
|
||||||
osyo-manga/shabadou.vim
|
osyo-manga/shabadou.vim
|
||||||
osyo-manga/vim-anzu
|
osyo-manga/vim-anzu
|
||||||
@ -507,8 +507,8 @@ slashmili/alchemist.vim
|
|||||||
sodapopcan/vim-twiggy
|
sodapopcan/vim-twiggy
|
||||||
solarnz/arcanist.vim
|
solarnz/arcanist.vim
|
||||||
sonph/onehalf
|
sonph/onehalf
|
||||||
steelsojka/completion-buffers
|
|
||||||
srcery-colors/srcery-vim
|
srcery-colors/srcery-vim
|
||||||
|
steelsojka/completion-buffers
|
||||||
stefandtw/quickfix-reflector.vim
|
stefandtw/quickfix-reflector.vim
|
||||||
stephpy/vim-yaml
|
stephpy/vim-yaml
|
||||||
sunaku/vim-dasht
|
sunaku/vim-dasht
|
||||||
|
25
pkgs/os-specific/linux/erofs-utils/default.nix
Normal file
25
pkgs/os-specific/linux/erofs-utils/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchgit, autoreconfHook, pkgconfig, fuse, libuuid, lz4 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "erofs-utils";
|
||||||
|
version = "1.2";
|
||||||
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url =
|
||||||
|
"https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git";
|
||||||
|
rev = "v" + version;
|
||||||
|
sha256 = "07hvijq2hsn3gg1kb8abrfk23n83j57yx8kyv4wqgwhhvd30myjc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoreconfHook pkgconfig fuse libuuid lz4 ];
|
||||||
|
|
||||||
|
configureFlags = [ "--enable-fuse" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Userspace utilities for linux-erofs file system";
|
||||||
|
license = with licenses; [ gpl2 ];
|
||||||
|
maintainers = with maintainers; [ ehmry ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
51
pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix
Normal file
51
pkgs/os-specific/linux/firmware/raspberrypi/armstubs.nix
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (stdenv.lib) optionals;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "raspberrypi-armstubs";
|
||||||
|
version = "2020-10-08";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "raspberrypi";
|
||||||
|
repo = "tools";
|
||||||
|
rev = "fc0e73c13865450e95edd046200e42a6e52d8256";
|
||||||
|
sha256 = "1g6ikpjcrm5x0rk5aiwjdd8grf997qkvgamcrdxy6k9ln746h25s";
|
||||||
|
};
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = [
|
||||||
|
"-march=armv8-a+crc"
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cd armstubs
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"CC8=${stdenv.cc.targetPrefix}cc"
|
||||||
|
"LD8=${stdenv.cc.targetPrefix}ld"
|
||||||
|
"OBJCOPY8=${stdenv.cc.targetPrefix}objcopy"
|
||||||
|
"OBJDUMP8=${stdenv.cc.targetPrefix}objdump"
|
||||||
|
"CC=${stdenv.cc.targetPrefix}cc"
|
||||||
|
"LD=${stdenv.cc.targetPrefix}ld"
|
||||||
|
"OBJCOPY=${stdenv.cc.targetPrefix}objcopy"
|
||||||
|
"OBJDUMP=${stdenv.cc.targetPrefix}objdump"
|
||||||
|
]
|
||||||
|
++ optionals (stdenv.isAarch64) [ "armstub8.bin" "armstub8-gic.bin" ]
|
||||||
|
++ optionals (stdenv.isAarch32) [ "armstub7.bin" "armstub8-32.bin" "armstub8-32-gic.bin" ]
|
||||||
|
;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -vp $out/
|
||||||
|
cp -v *.bin $out/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Firmware related ARM stubs for the Raspberry Pi";
|
||||||
|
homepage = https://github.com/raspberrypi/tools;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = [ "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
|
||||||
|
maintainers = with maintainers; [ samueldr ];
|
||||||
|
};
|
||||||
|
}
|
@ -825,6 +825,12 @@ let
|
|||||||
|
|
||||||
# See comments on https://github.com/NixOS/nixpkgs/commit/9b67ea9106102d882f53d62890468071900b9647
|
# See comments on https://github.com/NixOS/nixpkgs/commit/9b67ea9106102d882f53d62890468071900b9647
|
||||||
CRYPTO_AEGIS128_SIMD = whenAtLeast "5.4" no;
|
CRYPTO_AEGIS128_SIMD = whenAtLeast "5.4" no;
|
||||||
|
|
||||||
|
# Distros should configure the default as a kernel option.
|
||||||
|
# We previously defined it on the kernel command line as cma=
|
||||||
|
# The kernel command line will override a platform-specific configuration from its device tree.
|
||||||
|
# https://github.com/torvalds/linux/blob/856deb866d16e29bd65952e0289066f6078af773/kernel/dma/contiguous.c#L35-L44
|
||||||
|
CMA_SIZE_MBYTES = freeform "32";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
@ -5,15 +5,15 @@
|
|||||||
, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
|
, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2020-12-30";
|
version = "2020-12-31";
|
||||||
pname = "oh-my-zsh";
|
pname = "oh-my-zsh";
|
||||||
rev = "a4a79eaa8cdf39f35dcd1753b973e830ff7b00b8";
|
rev = "0e7c81316cab30d28d362f69ddc72be83029ac34";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
inherit rev;
|
||||||
owner = "ohmyzsh";
|
owner = "ohmyzsh";
|
||||||
repo = "ohmyzsh";
|
repo = "ohmyzsh";
|
||||||
sha256 = "4L0G1ECFkwg7iytIvg2WQionf48a4LLGIKobopgMm4g=";
|
sha256 = "cdI0R7F41/UJV0ur8iTH0DQw+L+YvaCVmyGTJEMZr04=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -1,6 +1,15 @@
|
|||||||
{ stdenv, fetchzip, lib, makeWrapper, autoPatchelfHook
|
{ stdenv
|
||||||
, openjdk11, pam, makeDesktopItem, icoutils
|
, fetchzip
|
||||||
}: let
|
, lib
|
||||||
|
, makeWrapper
|
||||||
|
, autoPatchelfHook
|
||||||
|
, openjdk11
|
||||||
|
, pam
|
||||||
|
, makeDesktopItem
|
||||||
|
, icoutils
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
pkg_path = "$out/lib/ghidra";
|
pkg_path = "$out/lib/ghidra";
|
||||||
|
|
||||||
@ -13,23 +22,22 @@
|
|||||||
categories = "Development;";
|
categories = "Development;";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "ghidra";
|
pname = "ghidra";
|
||||||
version = "9.2";
|
version = "9.2.1";
|
||||||
versiondate = "20201113";
|
versiondate = "20201215";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://www.ghidra-sre.org/ghidra_${version}_PUBLIC_${versiondate}.zip";
|
url = "https://www.ghidra-sre.org/ghidra_${version}_PUBLIC_${versiondate}.zip";
|
||||||
sha256 = "0lcvmbq04qkdsf0bz509frgw79bhyxyixkqg1k712p3576ng3nby";
|
sha256 = "0rjzmx0nbv9flb666mk3w2dqliyfzjyc4ldjfmb5d29wpgnf9bnz";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
autoPatchelfHook
|
|
||||||
icoutils
|
icoutils
|
||||||
];
|
]
|
||||||
|
++ lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
stdenv.cc.cc.lib
|
stdenv.cc.cc.lib
|
||||||
@ -62,7 +70,7 @@ in stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission";
|
description = "A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission";
|
||||||
homepage = "https://ghidra-sre.org/";
|
homepage = "https://ghidra-sre.org/";
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ ck3d govanify ];
|
maintainers = with maintainers; [ ck3d govanify ];
|
||||||
};
|
};
|
||||||
|
@ -252,7 +252,7 @@ in
|
|||||||
|
|
||||||
# It segfaults if it uses qt5.15
|
# It segfaults if it uses qt5.15
|
||||||
digitalbitbox = libsForQt514.callPackage ../applications/misc/digitalbitbox {
|
digitalbitbox = libsForQt514.callPackage ../applications/misc/digitalbitbox {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
gretl = callPackage ../applications/science/math/gretl { };
|
gretl = callPackage ../applications/science/math/gretl { };
|
||||||
@ -1028,7 +1028,7 @@ in
|
|||||||
apg = callPackage ../tools/security/apg { };
|
apg = callPackage ../tools/security/apg { };
|
||||||
|
|
||||||
apt-dater = callPackage ../tools/package-management/apt-dater {
|
apt-dater = callPackage ../tools/package-management/apt-dater {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
autorevision = callPackage ../tools/misc/autorevision { };
|
autorevision = callPackage ../tools/misc/autorevision { };
|
||||||
@ -3525,7 +3525,7 @@ in
|
|||||||
duc = callPackage ../tools/misc/duc { };
|
duc = callPackage ../tools/misc/duc { };
|
||||||
|
|
||||||
duff = callPackage ../tools/filesystems/duff {
|
duff = callPackage ../tools/filesystems/duff {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
dumptorrent = callPackage ../tools/misc/dumptorrent { };
|
dumptorrent = callPackage ../tools/misc/dumptorrent { };
|
||||||
@ -3591,7 +3591,7 @@ in
|
|||||||
eflite = callPackage ../applications/audio/eflite {};
|
eflite = callPackage ../applications/audio/eflite {};
|
||||||
|
|
||||||
eid-mw = callPackage ../tools/security/eid-mw {
|
eid-mw = callPackage ../tools/security/eid-mw {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
epubcheck = callPackage ../tools/text/epubcheck { };
|
epubcheck = callPackage ../tools/text/epubcheck { };
|
||||||
@ -4305,7 +4305,7 @@ in
|
|||||||
gmvault = callPackage ../tools/networking/gmvault { };
|
gmvault = callPackage ../tools/networking/gmvault { };
|
||||||
|
|
||||||
gnash = callPackage ../misc/gnash {
|
gnash = callPackage ../misc/gnash {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
gnirehtet = callPackage ../tools/networking/gnirehtet { };
|
gnirehtet = callPackage ../tools/networking/gnirehtet { };
|
||||||
@ -4543,7 +4543,7 @@ in
|
|||||||
gsmartcontrol = callPackage ../tools/misc/gsmartcontrol { };
|
gsmartcontrol = callPackage ../tools/misc/gsmartcontrol { };
|
||||||
|
|
||||||
gsmlib = callPackage ../development/libraries/gsmlib {
|
gsmlib = callPackage ../development/libraries/gsmlib {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
gssdp = callPackage ../development/libraries/gssdp { };
|
gssdp = callPackage ../development/libraries/gssdp { };
|
||||||
@ -5220,7 +5220,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
libcryptui = callPackage ../development/libraries/libcryptui {
|
libcryptui = callPackage ../development/libraries/libcryptui {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
libsmartcols = callPackage ../development/libraries/libsmartcols { };
|
libsmartcols = callPackage ../development/libraries/libsmartcols { };
|
||||||
@ -5648,7 +5648,7 @@ in
|
|||||||
lv = callPackage ../tools/text/lv { };
|
lv = callPackage ../tools/text/lv { };
|
||||||
|
|
||||||
lxc = callPackage ../os-specific/linux/lxc {
|
lxc = callPackage ../os-specific/linux/lxc {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
lxcfs = callPackage ../os-specific/linux/lxcfs { };
|
lxcfs = callPackage ../os-specific/linux/lxcfs { };
|
||||||
lxd = callPackage ../tools/admin/lxd { };
|
lxd = callPackage ../tools/admin/lxd { };
|
||||||
@ -6423,7 +6423,7 @@ in
|
|||||||
opn2bankeditor = callPackage ../tools/audio/opl3bankeditor/opn2bankeditor.nix { };
|
opn2bankeditor = callPackage ../tools/audio/opl3bankeditor/opn2bankeditor.nix { };
|
||||||
|
|
||||||
orangefs = callPackage ../tools/filesystems/orangefs {
|
orangefs = callPackage ../tools/filesystems/orangefs {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
os-prober = callPackage ../tools/misc/os-prober {};
|
os-prober = callPackage ../tools/misc/os-prober {};
|
||||||
@ -6499,7 +6499,7 @@ in
|
|||||||
parastoo-fonts = callPackage ../data/fonts/parastoo-fonts { };
|
parastoo-fonts = callPackage ../data/fonts/parastoo-fonts { };
|
||||||
|
|
||||||
parcellite = callPackage ../tools/misc/parcellite {
|
parcellite = callPackage ../tools/misc/parcellite {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
patchutils = callPackage ../tools/text/patchutils { };
|
patchutils = callPackage ../tools/text/patchutils { };
|
||||||
@ -7680,7 +7680,7 @@ in
|
|||||||
sysbench = callPackage ../development/tools/misc/sysbench {};
|
sysbench = callPackage ../development/tools/misc/sysbench {};
|
||||||
|
|
||||||
system-config-printer = callPackage ../tools/misc/system-config-printer {
|
system-config-printer = callPackage ../tools/misc/system-config-printer {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
libxml2 = libxml2Python;
|
libxml2 = libxml2Python;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -7968,7 +7968,7 @@ in
|
|||||||
ttf2pt1 = callPackage ../tools/misc/ttf2pt1 { };
|
ttf2pt1 = callPackage ../tools/misc/ttf2pt1 { };
|
||||||
|
|
||||||
ttfautohint = libsForQt5.callPackage ../tools/misc/ttfautohint {
|
ttfautohint = libsForQt5.callPackage ../tools/misc/ttfautohint {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
ttfautohint-nox = ttfautohint.override { enableGUI = false; };
|
ttfautohint-nox = ttfautohint.override { enableGUI = false; };
|
||||||
|
|
||||||
@ -8689,7 +8689,7 @@ in
|
|||||||
zbackup = callPackage ../tools/backup/zbackup {};
|
zbackup = callPackage ../tools/backup/zbackup {};
|
||||||
|
|
||||||
zbar = libsForQt5.callPackage ../tools/graphics/zbar {
|
zbar = libsForQt5.callPackage ../tools/graphics/zbar {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
zdelta = callPackage ../tools/compression/zdelta { };
|
zdelta = callPackage ../tools/compression/zdelta { };
|
||||||
@ -10320,7 +10320,7 @@ in
|
|||||||
solc = callPackage ../development/compilers/solc { };
|
solc = callPackage ../development/compilers/solc { };
|
||||||
|
|
||||||
souffle = callPackage ../development/compilers/souffle {
|
souffle = callPackage ../development/compilers/souffle {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
spasm-ng = callPackage ../development/compilers/spasm-ng { };
|
spasm-ng = callPackage ../development/compilers/spasm-ng { };
|
||||||
@ -10880,7 +10880,7 @@ in
|
|||||||
inherit (callPackage ../development/interpreters/ruby {
|
inherit (callPackage ../development/interpreters/ruby {
|
||||||
inherit (darwin) libiconv libobjc libunwind;
|
inherit (darwin) libiconv libobjc libunwind;
|
||||||
inherit (darwin.apple_sdk.frameworks) Foundation;
|
inherit (darwin.apple_sdk.frameworks) Foundation;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
bison = buildPackages.bison_3_5;
|
bison = buildPackages.bison_3_5;
|
||||||
})
|
})
|
||||||
ruby_2_5
|
ruby_2_5
|
||||||
@ -11599,7 +11599,7 @@ in
|
|||||||
|
|
||||||
fswatch = callPackage ../development/tools/misc/fswatch {
|
fswatch = callPackage ../development/tools/misc/fswatch {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
fujprog = callPackage ../development/tools/misc/fujprog {
|
fujprog = callPackage ../development/tools/misc/fujprog {
|
||||||
@ -11960,7 +11960,7 @@ in
|
|||||||
opengrok = callPackage ../development/tools/misc/opengrok { };
|
opengrok = callPackage ../development/tools/misc/opengrok { };
|
||||||
|
|
||||||
openocd = callPackage ../development/tools/misc/openocd {
|
openocd = callPackage ../development/tools/misc/openocd {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
oprofile = callPackage ../development/tools/profiling/oprofile {
|
oprofile = callPackage ../development/tools/profiling/oprofile {
|
||||||
@ -12560,11 +12560,11 @@ in
|
|||||||
belle-sip = callPackage ../development/libraries/belle-sip { };
|
belle-sip = callPackage ../development/libraries/belle-sip { };
|
||||||
|
|
||||||
libbfd = callPackage ../development/libraries/libbfd {
|
libbfd = callPackage ../development/libraries/libbfd {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
libopcodes = callPackage ../development/libraries/libopcodes {
|
libopcodes = callPackage ../development/libraries/libopcodes {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
bicpl = callPackage ../development/libraries/science/biology/bicpl { };
|
bicpl = callPackage ../development/libraries/science/biology/bicpl { };
|
||||||
@ -12827,7 +12827,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
dee = callPackage ../development/libraries/dee {
|
dee = callPackage ../development/libraries/dee {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
dhex = callPackage ../applications/editors/dhex { };
|
dhex = callPackage ../applications/editors/dhex { };
|
||||||
@ -12938,7 +12938,7 @@ in
|
|||||||
inherit (gst_all_1)
|
inherit (gst_all_1)
|
||||||
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
||||||
gst-libav;
|
gst-libav;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
fcgi = callPackage ../development/libraries/fcgi { };
|
fcgi = callPackage ../development/libraries/fcgi { };
|
||||||
@ -13133,7 +13133,7 @@ in
|
|||||||
|
|
||||||
gdal = callPackage ../development/libraries/gdal {
|
gdal = callPackage ../development/libraries/gdal {
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
gdal_1_11 = callPackage ../development/libraries/gdal/gdal-1_11.nix { };
|
gdal_1_11 = callPackage ../development/libraries/gdal/gdal-1_11.nix { };
|
||||||
@ -13534,7 +13534,7 @@ in
|
|||||||
|
|
||||||
heimdal = callPackage ../development/libraries/kerberos/heimdal.nix {
|
heimdal = callPackage ../development/libraries/kerberos/heimdal.nix {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
libheimdal = heimdal;
|
libheimdal = heimdal;
|
||||||
|
|
||||||
@ -13559,7 +13559,7 @@ in
|
|||||||
hidapi = callPackage ../development/libraries/hidapi {
|
hidapi = callPackage ../development/libraries/hidapi {
|
||||||
# TODO: remove once `udev` is `systemdMinimal` everywhere.
|
# TODO: remove once `udev` is `systemdMinimal` everywhere.
|
||||||
udev = systemdMinimal;
|
udev = systemdMinimal;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
highfive = callPackage ../development/libraries/highfive { };
|
highfive = callPackage ../development/libraries/highfive { };
|
||||||
@ -13573,7 +13573,7 @@ in
|
|||||||
hiredis-vip = callPackage ../development/libraries/hiredis-vip { };
|
hiredis-vip = callPackage ../development/libraries/hiredis-vip { };
|
||||||
|
|
||||||
hivex = callPackage ../development/libraries/hivex {
|
hivex = callPackage ../development/libraries/hivex {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
hound = callPackage ../development/tools/misc/hound { };
|
hound = callPackage ../development/tools/misc/hound { };
|
||||||
@ -13890,7 +13890,7 @@ in
|
|||||||
libayatana-appindicator = callPackage ../development/libraries/libayatana-appindicator { };
|
libayatana-appindicator = callPackage ../development/libraries/libayatana-appindicator { };
|
||||||
|
|
||||||
libarchive = callPackage ../development/libraries/libarchive {
|
libarchive = callPackage ../development/libraries/libarchive {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
libasr = callPackage ../development/libraries/libasr { };
|
libasr = callPackage ../development/libraries/libasr { };
|
||||||
@ -14126,7 +14126,7 @@ in
|
|||||||
libe57format = callPackage ../development/libraries/libe57format { };
|
libe57format = callPackage ../development/libraries/libe57format { };
|
||||||
|
|
||||||
libeatmydata = callPackage ../development/libraries/libeatmydata {
|
libeatmydata = callPackage ../development/libraries/libeatmydata {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
libeb = callPackage ../development/libraries/libeb { };
|
libeb = callPackage ../development/libraries/libeb { };
|
||||||
@ -14309,7 +14309,7 @@ in
|
|||||||
libgpiod = callPackage ../development/libraries/libgpiod { };
|
libgpiod = callPackage ../development/libraries/libgpiod { };
|
||||||
|
|
||||||
libgpod = callPackage ../development/libraries/libgpod {
|
libgpod = callPackage ../development/libraries/libgpod {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
libgssglue = callPackage ../development/libraries/libgssglue { };
|
libgssglue = callPackage ../development/libraries/libgssglue { };
|
||||||
@ -16020,7 +16020,7 @@ in
|
|||||||
sbc = callPackage ../development/libraries/sbc { };
|
sbc = callPackage ../development/libraries/sbc { };
|
||||||
|
|
||||||
schroedinger = callPackage ../development/libraries/schroedinger {
|
schroedinger = callPackage ../development/libraries/schroedinger {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
SDL = callPackage ../development/libraries/SDL ({
|
SDL = callPackage ../development/libraries/SDL ({
|
||||||
@ -16435,7 +16435,7 @@ in
|
|||||||
totem-pl-parser = callPackage ../development/libraries/totem-pl-parser { };
|
totem-pl-parser = callPackage ../development/libraries/totem-pl-parser { };
|
||||||
|
|
||||||
tpm2-tss = callPackage ../development/libraries/tpm2-tss {
|
tpm2-tss = callPackage ../development/libraries/tpm2-tss {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
tremor = callPackage ../development/libraries/tremor { };
|
tremor = callPackage ../development/libraries/tremor { };
|
||||||
@ -17108,7 +17108,7 @@ in
|
|||||||
cayley = callPackage ../servers/cayley { };
|
cayley = callPackage ../servers/cayley { };
|
||||||
|
|
||||||
charybdis = callPackage ../servers/irc/charybdis {
|
charybdis = callPackage ../servers/irc/charybdis {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
clamsmtp = callPackage ../servers/mail/clamsmtp { };
|
clamsmtp = callPackage ../servers/mail/clamsmtp { };
|
||||||
@ -17928,7 +17928,7 @@ in
|
|||||||
tomcat_mysql_jdbc = callPackage ../servers/http/tomcat/jdbc/mysql { };
|
tomcat_mysql_jdbc = callPackage ../servers/http/tomcat/jdbc/mysql { };
|
||||||
|
|
||||||
torque = callPackage ../servers/computing/torque {
|
torque = callPackage ../servers/computing/torque {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
tt-rss = callPackage ../servers/tt-rss { };
|
tt-rss = callPackage ../servers/tt-rss { };
|
||||||
@ -18219,6 +18219,8 @@ in
|
|||||||
|
|
||||||
dstat = callPackage ../os-specific/linux/dstat { };
|
dstat = callPackage ../os-specific/linux/dstat { };
|
||||||
|
|
||||||
|
erofs-utils = callPackage ../os-specific/linux/erofs-utils { };
|
||||||
|
|
||||||
# unstable until the first 1.x release
|
# unstable until the first 1.x release
|
||||||
fscrypt-experimental = callPackage ../os-specific/linux/fscrypt { };
|
fscrypt-experimental = callPackage ../os-specific/linux/fscrypt { };
|
||||||
fscryptctl-experimental = callPackage ../os-specific/linux/fscryptctl { };
|
fscryptctl-experimental = callPackage ../os-specific/linux/fscryptctl { };
|
||||||
@ -19267,6 +19269,8 @@ in
|
|||||||
|
|
||||||
raspberrypi-eeprom = callPackage ../os-specific/linux/raspberrypi-eeprom {};
|
raspberrypi-eeprom = callPackage ../os-specific/linux/raspberrypi-eeprom {};
|
||||||
|
|
||||||
|
raspberrypi-armstubs = callPackage ../os-specific/linux/firmware/raspberrypi/armstubs.nix {};
|
||||||
|
|
||||||
regionset = callPackage ../os-specific/linux/regionset { };
|
regionset = callPackage ../os-specific/linux/regionset { };
|
||||||
|
|
||||||
rfkill_udev = callPackage ../os-specific/linux/rfkill/udev.nix { };
|
rfkill_udev = callPackage ../os-specific/linux/rfkill/udev.nix { };
|
||||||
@ -19452,6 +19456,8 @@ in
|
|||||||
ubootRaspberryPi2
|
ubootRaspberryPi2
|
||||||
ubootRaspberryPi3_32bit
|
ubootRaspberryPi3_32bit
|
||||||
ubootRaspberryPi3_64bit
|
ubootRaspberryPi3_64bit
|
||||||
|
ubootRaspberryPi4_32bit
|
||||||
|
ubootRaspberryPi4_64bit
|
||||||
ubootRaspberryPiZero
|
ubootRaspberryPiZero
|
||||||
ubootRock64
|
ubootRock64
|
||||||
ubootRockPi4
|
ubootRockPi4
|
||||||
@ -21164,7 +21170,7 @@ in
|
|||||||
elf-dissector = libsForQt5.callPackage ../applications/misc/elf-dissector { };
|
elf-dissector = libsForQt5.callPackage ../applications/misc/elf-dissector { };
|
||||||
|
|
||||||
elinks = callPackage ../applications/networking/browsers/elinks {
|
elinks = callPackage ../applications/networking/browsers/elinks {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
elvis = callPackage ../applications/editors/elvis { };
|
elvis = callPackage ../applications/editors/elvis { };
|
||||||
@ -21410,7 +21416,7 @@ in
|
|||||||
fritzing = libsForQt5.callPackage ../applications/science/electronics/fritzing { };
|
fritzing = libsForQt5.callPackage ../applications/science/electronics/fritzing { };
|
||||||
|
|
||||||
fsv = callPackage ../applications/misc/fsv {
|
fsv = callPackage ../applications/misc/fsv {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
ft2-clone = callPackage ../applications/audio/ft2-clone { };
|
ft2-clone = callPackage ../applications/audio/ft2-clone { };
|
||||||
@ -21757,7 +21763,7 @@ in
|
|||||||
getxbook = callPackage ../applications/misc/getxbook { };
|
getxbook = callPackage ../applications/misc/getxbook { };
|
||||||
|
|
||||||
gimp = callPackage ../applications/graphics/gimp {
|
gimp = callPackage ../applications/graphics/gimp {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
gegl = gegl_0_4;
|
gegl = gegl_0_4;
|
||||||
lcms = lcms2;
|
lcms = lcms2;
|
||||||
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa;
|
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa;
|
||||||
@ -22877,7 +22883,7 @@ in
|
|||||||
metersLv2 = callPackage ../applications/audio/meters_lv2 { };
|
metersLv2 = callPackage ../applications/audio/meters_lv2 { };
|
||||||
|
|
||||||
mhwaveedit = callPackage ../applications/audio/mhwaveedit {
|
mhwaveedit = callPackage ../applications/audio/mhwaveedit {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
michabo = libsForQt5.callPackage ../applications/misc/michabo { };
|
michabo = libsForQt5.callPackage ../applications/misc/michabo { };
|
||||||
@ -23102,7 +23108,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
mup = callPackage ../applications/audio/mup {
|
mup = callPackage ../applications/audio/mup {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: we should probably merge these 2
|
# TODO: we should probably merge these 2
|
||||||
@ -23301,7 +23307,7 @@ in
|
|||||||
|
|
||||||
msmtp = callPackage ../applications/networking/msmtp {
|
msmtp = callPackage ../applications/networking/msmtp {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
imapfilter = callPackage ../applications/networking/mailreaders/imapfilter.nix {
|
imapfilter = callPackage ../applications/networking/mailreaders/imapfilter.nix {
|
||||||
@ -24009,7 +24015,7 @@ in
|
|||||||
rkdeveloptool = callPackage ../misc/rkdeveloptool { };
|
rkdeveloptool = callPackage ../misc/rkdeveloptool { };
|
||||||
|
|
||||||
rofi-unwrapped = callPackage ../applications/misc/rofi {
|
rofi-unwrapped = callPackage ../applications/misc/rofi {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
rofi = callPackage ../applications/misc/rofi/wrapper.nix { };
|
rofi = callPackage ../applications/misc/rofi/wrapper.nix { };
|
||||||
|
|
||||||
@ -24285,7 +24291,7 @@ in
|
|||||||
soxr = callPackage ../applications/misc/audio/soxr { };
|
soxr = callPackage ../applications/misc/audio/soxr { };
|
||||||
|
|
||||||
spek = callPackage ../applications/audio/spek {
|
spek = callPackage ../applications/audio/spek {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
spotify-unwrapped = callPackage ../applications/audio/spotify {
|
spotify-unwrapped = callPackage ../applications/audio/spotify {
|
||||||
@ -24319,7 +24325,7 @@ in
|
|||||||
sslyze = with python3Packages; toPythonApplication sslyze;
|
sslyze = with python3Packages; toPythonApplication sslyze;
|
||||||
|
|
||||||
ssr = callPackage ../applications/audio/soundscape-renderer {
|
ssr = callPackage ../applications/audio/soundscape-renderer {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
ssrc = callPackage ../applications/audio/ssrc { };
|
ssrc = callPackage ../applications/audio/ssrc { };
|
||||||
@ -25612,7 +25618,7 @@ in
|
|||||||
pivx = libsForQt5.callPackage ../applications/blockchains/pivx.nix { withGui = true; };
|
pivx = libsForQt5.callPackage ../applications/blockchains/pivx.nix { withGui = true; };
|
||||||
pivxd = callPackage ../applications/blockchains/pivx.nix {
|
pivxd = callPackage ../applications/blockchains/pivx.nix {
|
||||||
withGui = false;
|
withGui = false;
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
||||||
ethabi = callPackage ../applications/blockchains/ethabi.nix { };
|
ethabi = callPackage ../applications/blockchains/ethabi.nix { };
|
||||||
@ -25897,7 +25903,7 @@ in
|
|||||||
freecell-solver = callPackage ../games/freecell-solver { };
|
freecell-solver = callPackage ../games/freecell-solver { };
|
||||||
|
|
||||||
freeciv = callPackage ../games/freeciv {
|
freeciv = callPackage ../games/freeciv {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
qt5 = qt514;
|
qt5 = qt514;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -27596,7 +27602,7 @@ in
|
|||||||
boinc = callPackage ../applications/science/misc/boinc { };
|
boinc = callPackage ../applications/science/misc/boinc { };
|
||||||
|
|
||||||
celestia = callPackage ../applications/science/astronomy/celestia {
|
celestia = callPackage ../applications/science/astronomy/celestia {
|
||||||
autoreconfHook = autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
lua = lua5_1;
|
lua = lua5_1;
|
||||||
inherit (pkgs.gnome2) gtkglext;
|
inherit (pkgs.gnome2) gtkglext;
|
||||||
};
|
};
|
||||||
|
@ -429,6 +429,8 @@ let
|
|||||||
|
|
||||||
irmin = callPackage ../development/ocaml-modules/irmin { };
|
irmin = callPackage ../development/ocaml-modules/irmin { };
|
||||||
|
|
||||||
|
irmin-chunk = callPackage ../development/ocaml-modules/irmin/chunk.nix { };
|
||||||
|
|
||||||
irmin-fs = callPackage ../development/ocaml-modules/irmin/fs.nix { };
|
irmin-fs = callPackage ../development/ocaml-modules/irmin/fs.nix { };
|
||||||
|
|
||||||
irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { };
|
irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user