summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-13 18:41:33 -0500
committerJon <jonringer@users.noreply.github.com>2019-11-14 09:18:35 -0800
commit911bc93fe1d4156f2daa549d54674164ff49235c (patch)
treead28fad740479e13c900cb6b2d07116f5aa9c3b4 /pkgs/applications/video
parentbe83d685561c96cc462b701edac21f962cf2f574 (diff)
downloadnixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar.gz
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar.bz2
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar.lz
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar.xz
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.tar.zst
nixpkgs-911bc93fe1d4156f2daa549d54674164ff49235c.zip
celluloid: 0.17 -> 0.18
Also don't sed out gtk-update-icon-cache, we have
setup to remove these caches.
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/celluloid/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/video/celluloid/default.nix b/pkgs/applications/video/celluloid/default.nix
index 47a82470137..37c4c4bea35 100644
--- a/pkgs/applications/video/celluloid/default.nix
+++ b/pkgs/applications/video/celluloid/default.nix
@@ -16,13 +16,13 @@
 
 stdenv.mkDerivation rec {
   pname = "celluloid";
-  version = "0.17";
+  version = "0.18";
 
   src = fetchFromGitHub {
     owner = "celluloid-player";
     repo = "celluloid";
     rev = "v${version}";
-    sha256 = "0pnxjv6n2q6igxdr8wzbahcj7vccw4nfjdk8fjdnaivf2lyrpv2d";
+    sha256 = "1j8z75y98liirr41rlcn89cshvp1xp71cspcclm6wx455i7q2cg1";
   };
 
   nativeBuildInputs = [
@@ -45,7 +45,6 @@ stdenv.mkDerivation rec {
 
   postPatch = ''
     patchShebangs meson-post-install.py src/generate-authors.py
-    sed -i '/gtk-update-icon-cache/s/^/#/' meson-post-install.py
   '';
 
   doCheck = true;