config: change removed aliases to their non-aliased versions

This commit is contained in:
Gabriel Arazas 2022-09-28 19:12:05 +08:00
parent 38d8d19054
commit 1cb8b8c2cd
6 changed files with 7 additions and 13 deletions

View File

@ -144,9 +144,6 @@
inputs.guix-overlay.nixosModules.guix
];
# Bleeding edge, baybee!
nix.package = lib.mkDefault pkgs.nixUnstable;
# I want to capture the usual flakes to its exact version so we're
# making them available to our system. This will also prevent the
# annoying downloads since it always get the latest revision.

View File

@ -161,10 +161,7 @@ in {
hardware.opentabletdriver.enable = true;
# Enable support for Bluetooth.
hardware.bluetooth = {
enable = true;
package = pkgs.bluezFull;
};
hardware.bluetooth.enable = true;
})
(lib.mkIf cfg.cleanup.enable {

View File

@ -19,7 +19,7 @@ buildPythonPackage rec {
typing-extensions
hypothesis
iso8601
dateutil
python-dateutil
attrs
attrs-strict

View File

@ -13,7 +13,7 @@ buildPythonPackage rec {
doCheck = false;
propagatedBuildInputs = [
dateutil
python-dateutil
click
requests

View File

@ -13,7 +13,7 @@
, libglvnd
, mesa
, SDL2
, pkgconfig
, pkg-config
, valgrind
, sndio
, libsamplerate
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
substituteInPlace CMakeLists.txt --replace '@mruby@' "${mruby}"
'';
nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
alsaLib
freeglut

View File

@ -2,7 +2,7 @@
# to use the `rust` template from `nixpkgs` or whatever you prefer.
{ mkShell
, openssl
, pkgconfig
, pkg-config
, cargo
, rustc
, rustfmt
@ -14,7 +14,7 @@
mkShell {
buildInputs = [
openssl # In case some package needs it.
pkgconfig # In case some other package needs it.
pkg-config # In case some other package needs it.
# Rust platform.
cargo