File tree Expand file tree Collapse file tree 10 files changed +26
-35
lines changed
nixos/modules/services/web-apps
browsers/tor-browser-bundle-bin
virtualization/virt-manager
os-specific/linux/fswebcam Expand file tree Collapse file tree 10 files changed +26
-35
lines changed Original file line number Diff line number Diff line change 1818 tt-rss-config = let
1919 password =
2020 if ( cfg . database . password != null ) then
21- "${ ( escape [ "'" "\\ " ] cfg . database . password ) } "
21+ "' ${ ( escape [ "'" "\\ " ] cfg . database . password ) } ' "
2222 else if ( cfg . database . passwordFile != null ) then
23- "file_get_contents('${ cfg . database . passwordFile } '"
23+ "file_get_contents('${ cfg . database . passwordFile } ') "
2424 else
25- ""
25+ null
2626 ;
2727 in pkgs . writeText "config.php" ''
2828 <?php
4040 putenv('TTRSS_DB_HOST=${ optionalString ( cfg . database . host != null ) cfg . database . host } ');
4141 putenv('TTRSS_DB_USER=${ cfg . database . user } ');
4242 putenv('TTRSS_DB_NAME=${ cfg . database . name } ');
43- putenv('TTRSS_DB_PASS=${ password } ' );
43+ putenv('TTRSS_DB_PASS=' ${ optionalString ( password != null ) ". ${ password } " } );
4444 putenv('TTRSS_DB_PORT=${ toString dbPort } ');
4545
4646 putenv('TTRSS_AUTH_AUTO_CREATE=${ boolToString cfg . auth . autoCreate } ');
Original file line number Diff line number Diff line change 8787 fteLibPath = makeLibraryPath [ stdenv . cc . cc gmp ] ;
8888
8989 # Upstream source
90- version = "11.0" ;
90+ version = "11.0.2 " ;
9191
9292 lang = "en-US" ;
9393
9797 "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux64-${ version } _${ lang } .tar.xz"
9898 "https://tor.eff.org/dist/torbrowser/${ version } /tor-browser-linux64-${ version } _${ lang } .tar.xz"
9999 ] ;
100- sha256 = "0938a9yjfg9qa9rv5acrmbgqq11mc8j0pvl1n64jrdz29crk6sj2 " ;
100+ sha256 = "1bqlb8dlh92dpl9gmfh3yclq5ii09vv333yisa0i5gpwwzajnh5s " ;
101101 } ;
102102
103103 i686-linux = fetchurl {
104104 urls = [
105105 "https://dist.torproject.org/torbrowser/${ version } /tor-browser-linux32-${ version } _${ lang } .tar.xz"
106106 "https://tor.eff.org/dist/torbrowser/${ version } /tor-browser-linux32-${ version } _${ lang } .tar.xz"
107107 ] ;
108- sha256 = "07v1ca66a69jl238qdq81mw654yffrcyq685y4rvv8xvx11fnzzp " ;
108+ sha256 = "1blp4z9rmnnsvl3bk0ajdccvpzfshnpyijjfiqb9ma02qw2z0gff " ;
109109 } ;
110110 } ;
111111in
Original file line number Diff line number Diff line change 22 "name" : " element-desktop" ,
33 "productName" : " Element" ,
44 "main" : " lib/electron-main.js" ,
5- "version" : " 1.9.5 " ,
5+ "version" : " 1.9.6 " ,
66 "description" : " A feature-rich client for Matrix.org" ,
77 "author" : " Element" ,
88 "repository" : {
5454 "@types/minimist" : " ^1.2.1" ,
5555 "@typescript-eslint/eslint-plugin" : " ^4.17.0" ,
5656 "@typescript-eslint/parser" : " ^4.17.0" ,
57- "allchange" : " ^1.0.5 " ,
57+ "allchange" : " ^1.0.6 " ,
5858 "asar" : " ^2.0.1" ,
5959 "chokidar" : " ^3.5.2" ,
6060 "electron" : " 13.5" ,
Original file line number Diff line number Diff line change 11{
2- "version" : " 1.9.5 " ,
3- "desktopSrcHash" : " 8x3TBu0zSNEVWp+ULydule8bPSd01pMkCZHdJbQf82U =" ,
4- "desktopYarnHash" : " 0axz0d5qryd0k89lrziah1r6j1154c1cibf1qsjk1azlri3k4298 " ,
5- "webHash" : " 04pabvvb3l88gp866fkbjngl9r20s300pvw7qykynl0ps8fjms0l "
2+ "version" : " 1.9.6 " ,
3+ "desktopSrcHash" : " AJLKp9VbNF0XvcQe6t0/pw1hiVCgRiRb27KJooQ2NlQ =" ,
4+ "desktopYarnHash" : " 1xa8vrqj3g3hfhzrk8m7yr57my9ipyyhw8vsx4m86v8i1iqrpmnm " ,
5+ "webHash" : " 161w6i122i81jyb23mpxlf7k5wx2v4c6ai2liywn89q74hj3axr5 "
66}
Original file line number Diff line number Diff line change 2424
2525in stdenv . mkDerivation rec {
2626 pname = "signal-desktop" ;
27- version = "5.25.0 " ; # Please backport all updates to the stable channel.
27+ version = "5.25.1 " ; # Please backport all updates to the stable channel.
2828 # All releases have a limited lifetime and "expire" 90 days after the release.
2929 # When releases "expire" the application becomes unusable until an update is
3030 # applied. The expiration date for the current release can be extracted with:
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
3434
3535 src = fetchurl {
3636 url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${ version } _amd64.deb" ;
37- sha256 = "0ql9rzxrisqms3plcrmf3fjinpxba10asmpsxvhn0zlfajy47d0a " ;
37+ sha256 = "1b634sy2bac5i548g1z1fd5qqy8jr6abl5kbhq50d1kmwnqy1a5l " ;
3838 } ;
3939
4040 nativeBuildInputs = [
Original file line number Diff line number Diff line change @@ -47,10 +47,14 @@ python3Packages.buildPythonApplication rec {
4747
4848 setupPyGlobalFlags = [ "--no-update-icon-cache" ] ;
4949
50+ dontWrapGApps = true ;
51+
5052 preFixup = ''
5153 gappsWrapperArgs+=(--set PYTHONPATH "$PYTHONPATH")
5254 # these are called from virt-install in initrdinject.py
5355 gappsWrapperArgs+=(--prefix PATH : "${ makeBinPath [ cpio e2fsprogs file findutils gzip ] } ")
56+
57+ makeWrapperArgs+=("'' ${gappsWrapperArgs[@]}")
5458 '' ;
5559
5660 checkInputs = with python3Packages ; [ cpio cdrtools pytestCheckHook ] ;
Original file line number Diff line number Diff line change 6060 homepage = "https://www.un4seen.com/" ;
6161 license = licenses . unfreeRedistributable ;
6262 platforms = builtins . attrNames bass . so ;
63+ # until upstream has stable URLs, this package is prone to always being broken
64+ broken = true ;
6365 } ;
6466 } ;
6567
Original file line number Diff line number Diff line change @@ -28,18 +28,3 @@ diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
2828 #define HAVE_SYS_TIMEB_H 1
2929
3030 #if !PLATFORM(GTK) && !PLATFORM(QT)
31- diff --git a/Source/WTF/wtf/PlatformMac.cmake b/Source/WTF/wtf/PlatformMac.cmake
32- --- a/Source/WTF/wtf/PlatformMac.cmake
33- +++ b/Source/WTF/wtf/PlatformMac.cmake
34- @@ -2,11 +2,9 @@ set(WTF_LIBRARY_TYPE SHARED)
35-
36- find_library(COCOA_LIBRARY Cocoa)
37- find_library(COREFOUNDATION_LIBRARY CoreFoundation)
38- - find_library(READLINE_LIBRARY Readline)
39- list(APPEND WTF_LIBRARIES
40- ${COREFOUNDATION_LIBRARY}
41- ${COCOA_LIBRARY}
42- - ${READLINE_LIBRARY}
43- libicucore.dylib
44- )
45-
Original file line number Diff line number Diff line change 22
33stdenv . mkDerivation rec {
44 pname = "fswebcam" ;
5- version = "2020-07-25 " ;
5+ version = "20200725 " ;
66
77 src = fetchurl {
8- url = "https://www.sanslogic.co.uk/fswebcam/files/fswebcam-${ lib . replaceStrings [ "." ] [ "" ] version } .tar.gz" ;
8+ url = "https://www.sanslogic.co.uk/fswebcam/files/fswebcam-${ version } .tar.gz" ;
99 sha256 = "1dazsrcaw9s30zz3jpxamk9lkff5dkmflp1s0jjjvdbwa0k6k6ii" ;
1010 } ;
1111
Original file line number Diff line number Diff line change 2424
2525in stdenv . mkDerivation rec {
2626 pname = "ghidra" ;
27- version = "10.0 " ;
28- versiondate = "20210621 " ;
27+ version = "10.1 " ;
28+ versiondate = "20211210 " ;
2929
3030 src = fetchzip {
3131 url = "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${ version } _build/ghidra_${ version } _PUBLIC_${ versiondate } .zip" ;
32- sha256 = "0m1ksng2fkmcg7m22lqil10qn95s06gxnxdz7ih9qpbx67pmmq9x " ;
32+ sha256 = "0b4wn2nwxp96dpg3xpabqh74xxv0fhwmqq04wgfjgdh6bavqk86b " ;
3333 } ;
3434
3535 nativeBuildInputs = [
You can’t perform that action at this time.
0 commit comments