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: 391777b70988
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3946ade5513c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 27, 2020

  1. Copy the full SHA
    449c1f8 View commit details
  2. Merge pull request #78607 from Synthetica9/libversion-301

    libversion: 2.9.0 -> 3.0.1
    ryantm authored Jan 27, 2020
    Copy the full SHA
    3946ade View commit details
Showing with 5 additions and 2 deletions.
  1. +5 −2 pkgs/development/libraries/libversion/default.nix
7 changes: 5 additions & 2 deletions pkgs/development/libraries/libversion/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,20 @@

stdenv.mkDerivation rec {
pname = "libversion";
version = "2.9.0";
version = "3.0.1";

src = fetchFromGitHub {
owner = "repology";
repo = "libversion";
rev = version;
sha256 = "0h0yfcgxll09dckzjb1im3yf54cjkpsflr7r4kwz1jcr3fxq41fz";
sha256 = "13x5djdpv6aryxsbw6a3b6vwzi9f4aa3gn9dqb7axzppggayawyk";
};

nativeBuildInputs = [ cmake ];

preCheck = ''
export LD_LIBRARY_PATH=/build/source/build/libversion/:$LD_LIBRARY_PATH
'';
doCheck = true;
checkTarget = "test";