summary refs log tree commit diff
path: root/pkgs/development/libraries/libslirp
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-05-20 15:42:15 +1000
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-20 12:13:24 -0700
commit0617c9ea21236b13872eb2525a6673cf4bb3ed7e (patch)
tree30c39a129b7a38bcc9ce651faa9b0d3c5cd5c046 /pkgs/development/libraries/libslirp
parent2680cfcb5912df05513f2320da36b9ae2725d5d2 (diff)
downloadnixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar.gz
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar.bz2
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar.lz
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar.xz
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.tar.zst
nixpkgs-0617c9ea21236b13872eb2525a6673cf4bb3ed7e.zip
libslirp: 4.4.0 -> 4.5.0
https://gitlab.freedesktop.org/slirp/libslirp/-/releases/v4.5.0
Diffstat (limited to 'pkgs/development/libraries/libslirp')
-rw-r--r--pkgs/development/libraries/libslirp/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libslirp/default.nix b/pkgs/development/libraries/libslirp/default.nix
index 8bd74d29243..5da6cf6bbbc 100644
--- a/pkgs/development/libraries/libslirp/default.nix
+++ b/pkgs/development/libraries/libslirp/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
 , fetchFromGitLab
 , meson
 , ninja
@@ -8,14 +9,14 @@
 
 stdenv.mkDerivation rec {
   pname = "libslirp";
-  version = "4.4.0";
+  version = "4.5.0";
 
   src = fetchFromGitLab {
     domain = "gitlab.freedesktop.org";
     owner = "slirp";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0abh337jvij664w65zszjql42n720zzfap0ab0amr4qcvkzw7bjx";
+    sha256 = "sha256-UdKBED7xR0gDf3aj3+6I62CnAwGP7XxskaFzWeUUkkk=";
   };
 
   nativeBuildInputs = [ meson ninja pkg-config ];