Skip to content

Commit

Permalink
jp2a: 1.0.6 -> 1.0.7 (#24579)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and zimbatm committed Apr 3, 2017
1 parent 74f7db0 commit 94c2f3e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pkgs/applications/misc/jp2a/default.nix
@@ -1,16 +1,19 @@
{ stdenv, fetchurl, libjpeg }:
{ stdenv, fetchFromGitHub, libjpeg, autoreconfHook }:

stdenv.mkDerivation rec {
version = "1.0.6";
version = "1.0.7";
name = "jp2a-${version}";

src = fetchurl {
url = "mirror://sourceforge/jp2a/${name}.tar.gz";
sha256 = "076frk3pa16s4r1b10zgy81vdlz0385zh3ykbnkaij25jn5aqc09";
src = fetchFromGitHub {
owner = "cslarsen";
repo = "jp2a";
rev = "v${version}";
sha256 = "12a1z9ba2j16y67f41y8ax5sgv1wdjd71pg7circdxkj263n78ql";
};

makeFlags = "PREFIX=$(out)";

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libjpeg ];

meta = with stdenv.lib; {
Expand Down

0 comments on commit 94c2f3e

Please sign in to comment.