catatonit: 0.1.5 -> 0.1.6

https://github.com/openSUSE/catatonit/releases/tag/v0.1.6

zowoq a92dd171 bdc01cb9

+3 -11
+3 -11
pkgs/applications/virtualization/catatonit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, glibc, nixosTests }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, glibc, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "catatonit"; 5 - version = "0.1.5"; 5 + version = "0.1.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "openSUSE"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "ciJ1MI7jr5P2PgxIykQ+BiwNUO8lQHGt0+U8CNbc5bI="; 11 + sha256 = "sha256-hokG6o7toZxU984EvIlne33Aa2EZVZ3qu1jTZMm5nt4="; 12 12 }; 13 - 14 - patches = [ 15 - # Fix compilation with musl 16 - (fetchpatch { 17 - url = "https://github.com/openSUSE/catatonit/commit/75014b1c3099245b7d0f44f24d7f6dc4888a45fd.patch"; 18 - sha256 = "sha256-9VMNUT1U90ocjvE7EXYfLxuodDwTXXHYg89qqa5Jq0g="; 19 - }) 20 - ]; 21 13 22 14 nativeBuildInputs = [ autoreconfHook ]; 23 15 buildInputs = lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];