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: 70e084073f10
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ebf46a2acba2
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 23, 2019

  1. Copy the full SHA
    ebf46a2 View commit details
Showing with 10 additions and 7 deletions.
  1. +10 −7 pkgs/development/libraries/libb2/default.nix
17 changes: 10 additions & 7 deletions pkgs/development/libraries/libb2/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchurl, autoconf, automake, libtool }:
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config }:

stdenv.mkDerivation rec {
name = "libb2-${version}";
version = "0.98";
version = "0.98.1";

src = fetchurl {
url = "https://blake2.net/${name}.tar.gz";
sha256 = "1852gh8wwnsghdb9zhxdhw0173plpqzk684npxbl4bzk1hhzisal";
src = fetchFromGitHub {
owner = "BLAKE2";
repo = "libb2";
rev = "v${version}";
sha256 = "0qj8aaqvfcavj1vj5asm4pqm03ap7q8x4c2fy83cqggvky0frgya";
};

preConfigure = ''
@@ -16,14 +18,15 @@ stdenv.mkDerivation rec {

configureFlags = stdenv.lib.optional stdenv.hostPlatform.isx86 "--enable-fat=yes";

nativeBuildInputs = [ autoconf automake libtool ];
nativeBuildInputs = [ autoconf automake libtool pkg-config ];

doCheck = true;

meta = with stdenv.lib; {
description = "The BLAKE2 family of cryptographic hash functions";
homepage = https://blake2.net/;
platforms = platforms.all;
maintainers = with maintainers; [ dfoxfranke ];
maintainers = with maintainers; [ dfoxfranke dotlambda ];
license = licenses.cc0;
};
}