about summary refs log tree commit diff
path: root/pkgs/applications/misc/faircamp
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-10-17 11:58:05 +0200
committerFrancesco Gazzetta <fgaz@fgaz.me>2022-10-17 11:58:05 +0200
commit08bb29847e53c209fd5c632e1e822dd70440a373 (patch)
tree5c06db6764e57267f3d0d8ba31a73894760bd950 /pkgs/applications/misc/faircamp
parentb38d7f4b89f6ea8e5eb74bba85cb7bfc48ec3544 (diff)
faircamp: unstable-2022-07-22 -> unstable-2022-10-08
Diffstat (limited to 'pkgs/applications/misc/faircamp')
-rw-r--r--pkgs/applications/misc/faircamp/default.nix19
1 files changed, 15 insertions, 4 deletions
diff --git a/pkgs/applications/misc/faircamp/default.nix b/pkgs/applications/misc/faircamp/default.nix
index 2113d53595da8..a50c4e42706a1 100644
--- a/pkgs/applications/misc/faircamp/default.nix
+++ b/pkgs/applications/misc/faircamp/default.nix
@@ -2,6 +2,10 @@
 , rustPlatform
 , fetchgit
 , makeWrapper
+, pkg-config
+, glib
+, libopus
+, vips
 , ffmpeg
 , callPackage
 , unstableGitUpdater
@@ -9,20 +13,27 @@
 
 rustPlatform.buildRustPackage {
   pname = "faircamp";
-  version = "unstable-2022-07-22";
+  version = "unstable-2022-10-08";
 
   # TODO when switching to a stable release, use fetchFromGitea and add a
   # version test. Meanwhile, fetchgit is used to make unstableGitUpdater work.
   src = fetchgit {
     url = "https://codeberg.org/simonrepp/faircamp.git";
-    rev = "4803b6e0b59c1fc9922d1e498743a0171d7f324d";
-    sha256 = "sha256-VliBGYZPoX65JURlBaVMCMB5DuE/gqr27KcEzAVRFxc=";
+    rev = "630415985127298bf82bfc210d2fc8b214758db1";
+    sha256 = "sha256-4pzDey0iV7LtHI0rbbcCjjuTaFt0CR88Vl0B1RU96v0=";
   };
 
-  cargoHash = "sha256-fs7CXw6CS+TtMxLtDaQiYY6fiBFl4RCttymQJDAm6dg=";
+  cargoHash = "sha256-GgWxxKHLGtsSGVbhli6HTfUu4TmbY4J9N7UA7AOzUkc=";
 
   nativeBuildInputs = [
     makeWrapper
+    pkg-config
+  ];
+
+  buildInputs = [
+    glib
+    libopus
+    vips
   ];
 
   postInstall = ''