summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/system76-firmware
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2020-09-22 20:14:14 -0400
committerShea Levy <shea@shealevy.com>2020-09-22 20:14:29 -0400
commitf43c02c7ff649a0594937b5b99c4276d9d89b61f (patch)
tree3ed94ebab5abab53250268bbe694fff9411917c2 /pkgs/os-specific/linux/firmware/system76-firmware
parentfccf069e7735b03f002150f1a9655a8831a90465 (diff)
downloadnixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar.gz
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar.bz2
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar.lz
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar.xz
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.tar.zst
nixpkgs-f43c02c7ff649a0594937b5b99c4276d9d89b61f.zip
system76-firmware: Init at 1.0.17
Diffstat (limited to 'pkgs/os-specific/linux/firmware/system76-firmware')
-rw-r--r--pkgs/os-specific/linux/firmware/system76-firmware/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/firmware/system76-firmware/default.nix b/pkgs/os-specific/linux/firmware/system76-firmware/default.nix
new file mode 100644
index 00000000000..40598abac92
--- /dev/null
+++ b/pkgs/os-specific/linux/firmware/system76-firmware/default.nix
@@ -0,0 +1,39 @@
+{ rustPlatform, lib, fetchFromGitHub, lzma, pkgconfig, openssl, dbus, efibootmgr, makeWrapper }:
+rustPlatform.buildRustPackage rec {
+  pname = "system76-firmware";
+  # Check Makefile when updating, make sure postInstall matches make install
+  version = "1.0.17";
+
+  src = fetchFromGitHub {
+    owner = "pop-os";
+    repo = pname;
+    rev = version;
+    sha256 = "0cnrskfk3sam90lfpgsraqs4bx9yz8rxhwfs8rxdri04lakxgghg";
+  };
+
+  nativeBuildInputs = [ pkgconfig makeWrapper ];
+
+  buildInputs = [ lzma openssl dbus ];
+
+  cargoBuildFlags = [ "--workspace" ];
+
+  cargoSha256 = "06jrmxy68glcmbn9px29wc0s8pqdn26iy4jn3c246dapv1zvbb4s";
+
+  # Purposefully don't install systemd unit file, that's for NixOS
+  postInstall = ''
+    install -D -m -0644 data/system76-firmware-daemon.conf $out/etc/dbus-1/system.d/system76-firmware-daemon.conf
+
+    for bin in $out/bin/system76-firmware-*
+    do
+      wrapProgram $bin --prefix PATH : "${efibootmgr}/bin"
+    done
+  '';
+
+  meta = {
+    description = "Tools for managing firmware updates for system76 devices.";
+    homepage = "https://github.com/pop-os/system76-firmware";
+    license = lib.licenses.gpl3;
+    maintainers = [ lib.maintainers.shlevy ];
+    platforms = lib.platforms.linux;
+  };
+}