Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

guvcview: 2.1.0 -> 2.2.1

emaryn 59c2aedc 81229d11

+4 -2
+4 -2
pkgs/os-specific/linux/guvcview/default.nix
··· 3 3 lib, 4 4 stdenv, 5 5 fetchurl, 6 + cmake, 6 7 intltool, 7 8 pkg-config, 8 9 portaudio, ··· 27 28 }: 28 29 29 30 stdenv.mkDerivation (finalAttrs: { 30 - version = "2.1.0"; 31 31 pname = "guvcview"; 32 + version = "2.2.1"; 32 33 33 34 src = fetchurl { 34 35 url = "mirror://sourceforge/project/guvcview/source/guvcview-src-${finalAttrs.version}.tar.bz2"; 35 - hash = "sha256-PZPkyfq40aepveGm278E1s+dNHwTS1EotFhqHZC2PPs="; 36 + hash = "sha256-0q3HznYpYehTw+FrURutYVBEktEvPi634w2kovet5a8="; 36 37 }; 37 38 38 39 nativeBuildInputs = 39 40 [ 40 41 intltool 41 42 pkg-config 43 + cmake 42 44 ] 43 45 ++ lib.optionals useGtk [ wrapGAppsHook3 ] 44 46 ++ lib.optionals useQt [ wrapQtAppsHook ];