about summary refs log tree commit diff
path: root/pkgs/applications/misc/whalebird
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2024-03-16 02:59:23 +0100
committerGitHub <noreply@github.com>2024-03-16 02:59:23 +0100
commit0b04d2b28c630d833b14d30806d3bc2e7dc3f0f6 (patch)
treee2d3de549ec623bace79f6426f39fcbbaa434b47 /pkgs/applications/misc/whalebird
parentc2e03072b8e365b0a76cf884f781f0f196b96214 (diff)
whalebird: add changelog, fix build on aarch64-linux (#296143)
Diffstat (limited to 'pkgs/applications/misc/whalebird')
-rw-r--r--pkgs/applications/misc/whalebird/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/whalebird/default.nix b/pkgs/applications/misc/whalebird/default.nix
index 665cae9d4bd92..83fcccbf37618 100644
--- a/pkgs/applications/misc/whalebird/default.nix
+++ b/pkgs/applications/misc/whalebird/default.nix
@@ -83,7 +83,7 @@ stdenv.mkDerivation rec {
     runHook preInstall
 
     mkdir -p $out/opt
-    cp -r ./dist/linux-unpacked $out/opt/Whalebird
+    cp -r ./dist/*-unpacked $out/opt/Whalebird
 
     # Install icons
     # Taken from https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=whalebird#n41
@@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Single-column Fediverse client for desktop";
     homepage = "https://whalebird.social";
-    sourceProvenance = with sourceTypes; [ fromSource ];
+    changelog = "https://github.com/h3poteto/whalebird-desktop/releases/tag/v${version}";
     license = licenses.gpl3Only;
     maintainers = with maintainers; [ wolfangaukang colinsane weathercold ];
     platforms = [ "x86_64-linux" "aarch64-linux" ];