Skip to content

Commit

Permalink
Merge pull request NixOS#301802 from andresilva/ferdium-6.7.2
Browse files Browse the repository at this point in the history
ferdium: 6.7.1 -> 6.7.2
  • Loading branch information
andresilva authored Apr 6, 2024
2 parents 43d1fa5 + 33caf57 commit 1b44615
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ lib, mkFranzDerivation, fetchurl, xorg, nix-update-script, stdenv }:
{ lib, mkFranzDerivation, fetchurl, xorg, stdenv }:

let
arch = {
x86_64-linux = "amd64";
aarch64-linux = "arm64";
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
hash = {
amd64-linux_hash = "sha256-ERAMFb69Y2kWiHIBn4ITEZJlx+YIpzqDye80vchOXl0=";
arm64-linux_hash = "sha256-B3zlhxJQaDoZ69nu/dXUbY2qxJ6FAp4CqU8+TLoNwsg=";
amd64-linux_hash = "sha256-RH8iHqJ0Nd3wkXmv/ZGX5JeWtxyJtVLVb0tz6tnkjrw=";
arm64-linux_hash = "sha256-0gvkabuxRqkMeyZiOSyT6C7v767+uCrsXE8qk0y0mYM=";
}."${arch}-linux_hash";
in mkFranzDerivation rec {
in
mkFranzDerivation rec {
pname = "ferdium";
name = "Ferdium";
version = "6.7.1";
version = "6.7.2";
src = fetchurl {
url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-${arch}.deb";
inherit hash;
Expand Down

0 comments on commit 1b44615

Please sign in to comment.