Skip to content

Commit

Permalink
galculator: 2.1.3 -> 2.1.4 (#24230)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and zimbatm committed Mar 23, 2017
1 parent e82baf0 commit bf7847e
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions pkgs/applications/misc/galculator/default.nix
@@ -1,17 +1,20 @@
{ stdenv, fetchurl
, intltool, pkgconfig, gtk }:
{ stdenv, fetchFromGitHub
, autoreconfHook, intltool
, gtk, pkgconfig, flex }:

stdenv.mkDerivation rec {

name = "galculator-${version}";
version = "2.1.3";
version = "2.1.4";

src = fetchurl {
url = "mirror://sourceforge/galculator/${name}.tar.gz";
sha256 = "12m7dldjk10lpkdxk7zpk98n32ci65zmxidghihb7n1m3rhp3q17";
src = fetchFromGitHub {
owner = "galculator";
repo = "galculator";
rev = "v${version}";
sha256 = "0q0hb62f266709ncyq96bpx4a40a1i6dc5869byvd7x285sx1c2w";
};

buildInputs = [ intltool pkgconfig gtk ];
nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
buildInputs = [ gtk flex ];

meta = with stdenv.lib; {
description = "A GTK 2/3 algebraic and RPN calculator";
Expand Down

0 comments on commit bf7847e

Please sign in to comment.