Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4b634e76f64d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 529b78991932
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 24, 2020

  1. libconfuse: 3.2.2 -> 3.3

    r-ryantm authored and SuperSandro2000 committed Nov 24, 2020
    Copy the full SHA
    e445fc2 View commit details
  2. Copy the full SHA
    dc041e1 View commit details

Commits on Dec 4, 2020

  1. Copy the full SHA
    529b789 View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 pkgs/development/libraries/libconfuse/default.nix
10 changes: 8 additions & 2 deletions pkgs/development/libraries/libconfuse/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,21 @@

stdenv.mkDerivation rec {
pname = "libconfuse";
version = "3.2.2";
version = "3.3";

src = fetchFromGitHub {
sha256 = "0djjq7j9iiyqxqqrlzm476xkibjasqvgzjwkalgj1l3f2smi53aw";
sha256 = "1npfk5jv59kk4n8pkyx89fn9s6p8x3gbffs42jaw24frgxfgp8ca";
rev = "v${version}";
repo = "libconfuse";
owner = "martinh";
};

postPatch = ''
substituteInPlace tests/Makefile.am \
--replace 'TESTS += empty_string' "" \
--replace 'TESTS += print_filter' ""
'';

nativeBuildInputs = [ autoreconfHook flex ];

enableParallelBuilding = true;