Skip to content

Commit

Permalink
unibilium: 1.2.1 -> 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pSub committed Feb 11, 2018
1 parent 0e2ec65 commit 2e7e318
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/libraries/unibilium/default.nix
@@ -1,21 +1,21 @@
{ stdenv, lib, fetchFromGitHub, libtool, pkgconfig }:
{ stdenv, lib, fetchFromGitHub, libtool, pkgconfig, perl }:

stdenv.mkDerivation rec {
name = "unibilium-${version}";

version = "1.2.1";
version = "2.0.0";

src = fetchFromGitHub {
owner = "mauke";
repo = "unibilium";
rev = "v${version}";
sha256 = "11mbfijdrvbmdlmxs8j4vij78ki0vna89yg3r9n9g1i6j45hiq2r";
sha256 = "1wa9a32wzqnxqh1jh554afj13dzjr6mw2wzqzw8d08nza9pg2ra2";
};

makeFlags = [ "PREFIX=$(out)" ]
++ stdenv.lib.optional stdenv.isDarwin "LIBTOOL=${libtool}/bin/libtool";

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ libtool ];

meta = with lib; {
Expand Down

0 comments on commit 2e7e318

Please sign in to comment.