lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bzip2: Add `meta.pkgConfigModules` and test

+9 -3
+1 -1
pkgs/development/libraries/libappindicator/default.nix
··· 78 78 platforms = platforms.linux; 79 79 maintainers = [ maintainers.msteen ]; 80 80 # TODO: Resolve the issues with the Mono bindings. 81 - broken = monoSupport && (gtkVersion != "2"); 81 + broken = monoSupport; 82 82 }; 83 83 })
+8 -2
pkgs/tools/compression/bzip2/default.nix
··· 1 1 { lib, stdenv, fetchurl 2 2 , linkStatic ? with stdenv.hostPlatform; isStatic || isCygwin 3 3 , autoreconfHook 4 + , testers 4 5 }: 5 6 6 7 # Note: this package is used for bootstrapping fetchurl, and thus ··· 8 9 # cgit) that are needed here should be included directly in Nixpkgs as 9 10 # files. 10 11 11 - stdenv.mkDerivation rec { 12 + stdenv.mkDerivation (finalAttrs: let 13 + inherit (finalAttrs) version; 14 + in { 12 15 pname = "bzip2"; 13 16 version = "1.0.8"; 14 17 ··· 53 56 ln -s $out/lib/libbz2.so.1.0.* $out/lib/libbz2.so.1.0 54 57 ''; 55 58 59 + passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 60 + 56 61 meta = with lib; { 57 62 description = "High-quality data compression program"; 58 63 homepage = "https://www.sourceware.org/bzip2"; 59 64 changelog = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=CHANGES;hb=HEAD"; 60 65 license = licenses.bsdOriginal; 66 + pkgConfigModules = [ "bzip2" ]; 61 67 platforms = platforms.all; 62 68 maintainers = with maintainers; [ mic92 ]; 63 69 }; 64 - } 70 + })