Skip to content

Commit

Permalink
purePackages.octave: 0.7 -> 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 13, 2017
1 parent a77380b commit c836651
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/pure-modules/octave/default.nix
@@ -1,16 +1,16 @@
{ stdenv, fetchurl, pkgconfig, pure, octave }:
{ stdenv, fetchurl, pkgconfig, pure, octave, gcc6 }:

stdenv.mkDerivation rec {
baseName = "octave";
version = "0.7";
version = "0.9";
name = "pure-${baseName}-${version}";

src = fetchurl {
url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
sha256 = "04c1q5cjcyc5sg15ny1hn43rkphja3virw4k110cahc3piwbpsqk";
sha256 = "0l1mvmi3rpabzjcrk6p04rdn922mvdm9x67zby3dha5iiccc47q0";
};

buildInputs = [ pkgconfig ];
buildInputs = [ pkgconfig gcc6 ];
propagatedBuildInputs = [ pure octave ];
makeFlags = "libdir=$(out)/lib prefix=$(out)/";
setupHook = ../generic-setup-hook.sh;
Expand Down

0 comments on commit c836651

Please sign in to comment.