warp: 0.6.2 -> 0.7.0

Diff: https://gitlab.gnome.org/World/warp/-/compare/v0.6.2...v0.7.0

+12 -5
+12 -5
pkgs/applications/networking/warp/default.nix
··· 15 , glib 16 , gtk4 17 , libadwaita 18 , Security 19 , Foundation 20 }: 21 22 stdenv.mkDerivation rec { 23 pname = "warp"; 24 - version = "0.6.2"; 25 26 src = fetchFromGitLab { 27 domain = "gitlab.gnome.org"; 28 owner = "World"; 29 - repo = pname; 30 rev = "v${version}"; 31 - hash = "sha256-pntHIY0cScDKhWR6kXp6YrEbBQiQjUId3MrJzy5l+K8="; 32 }; 33 34 postPatch = '' ··· 38 cargoDeps = rustPlatform.fetchCargoTarball { 39 inherit src; 40 name = "${pname}-${version}"; 41 - hash = "sha256-Go/a7aVHF1Yt3yIccKJIVeFy5rckXhSKfd13hdhlLUQ="; 42 }; 43 44 nativeBuildInputs = [ ··· 59 glib 60 gtk4 61 libadwaita 62 - ] ++ lib.optionals stdenv.isDarwin [ 63 Security 64 Foundation 65 ];
··· 15 , glib 16 , gtk4 17 , libadwaita 18 + , zbar 19 + , gst_all_1 20 , Security 21 , Foundation 22 }: 23 24 stdenv.mkDerivation rec { 25 pname = "warp"; 26 + version = "0.7.0"; 27 28 src = fetchFromGitLab { 29 domain = "gitlab.gnome.org"; 30 owner = "World"; 31 + repo = "warp"; 32 rev = "v${version}"; 33 + hash = "sha256-GRxZ3y1PdJpBDnGCfmOmZgN8n1aaYf9IhyszRwo3MjQ="; 34 }; 35 36 postPatch = '' ··· 40 cargoDeps = rustPlatform.fetchCargoTarball { 41 inherit src; 42 name = "${pname}-${version}"; 43 + hash = "sha256-v/MhVcQmMYD/n/8wmPCYUy4YpXhL0v4fq8h6cllo/pw="; 44 }; 45 46 nativeBuildInputs = [ ··· 61 glib 62 gtk4 63 libadwaita 64 + zbar 65 + ] ++ (with gst_all_1; [ 66 + gstreamer 67 + gst-plugins-base 68 + gst-plugins-bad 69 + ]) ++ lib.optionals stdenv.isDarwin [ 70 Security 71 Foundation 72 ];