jool: 3.5.3 -> 3.5.4

This commit is contained in:
Franz Pletz
2017-08-01 00:31:12 +02:00
parent f3a54b014c
commit 9719e43494
3 changed files with 13 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchzip, autoreconfHook, pkgconfig, libnl }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libnl }:
let
sourceAttrs = (import ./source.nix) { inherit fetchzip; };
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
src = sourceAttrs.src;
sourceRoot = "Jool-${sourceAttrs.version}.zip/usr";
sourceRoot = "Jool-v${sourceAttrs.version}-src/usr";
buildInputs = [ autoreconfHook pkgconfig libnl ];