summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/firmware-manager
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 19:12:53 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-04-04 19:49:52 +0200
commit3453b89f4bba270e2d82f6248b09b9595bb47f4b (patch)
tree4b2b84a0ae5d4ba15360e8317b5dfaefbe7ab340 /pkgs/os-specific/linux/firmware/firmware-manager
parentd24e2d1b0ba77da1ea5b91fcf6cf869d42880dc5 (diff)
downloadnixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.gz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.bz2
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.lz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.xz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.zst
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.zip
lzma: deprecate alias
Diffstat (limited to 'pkgs/os-specific/linux/firmware/firmware-manager')
-rw-r--r--pkgs/os-specific/linux/firmware/firmware-manager/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/firmware/firmware-manager/default.nix b/pkgs/os-specific/linux/firmware/firmware-manager/default.nix
index f7f02037800..80730fdbefb 100644
--- a/pkgs/os-specific/linux/firmware/firmware-manager/default.nix
+++ b/pkgs/os-specific/linux/firmware/firmware-manager/default.nix
@@ -1,4 +1,4 @@
-{ rustPlatform, lib, fetchFromGitHub, lzma, pkg-config, openssl, dbus, glib, udev, cairo, pango, atk, gdk-pixbuf, gtk3, wrapGAppsHook }:
+{ rustPlatform, lib, fetchFromGitHub, xz, pkg-config, openssl, dbus, glib, udev, cairo, pango, atk, gdk-pixbuf, gtk3, wrapGAppsHook }:
 rustPlatform.buildRustPackage rec {
   pname = "firmware-manager";
   version = "0.1.2";
@@ -12,7 +12,7 @@ rustPlatform.buildRustPackage rec {
 
   nativeBuildInputs = [ pkg-config wrapGAppsHook ];
 
-  buildInputs = [ lzma openssl dbus glib udev cairo pango atk gdk-pixbuf gtk3 ];
+  buildInputs = [ xz openssl dbus glib udev cairo pango atk gdk-pixbuf gtk3 ];
 
   depsExtraArgs.postPatch = "make prefix='$(out)' toml-gen";