Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cb0eb5b2718f
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c58d0fc3677d
Choose a head ref
  • 2 commits
  • 6 files changed
  • 2 contributors

Commits on Jun 4, 2018

  1. julia: add some version info to passthru, will be used by julia2nix

    (cherry picked from commit c548814)
    rbvermaa committed Jun 4, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    102d3d0 View commit details
  2. linux-copperhead: 4.16.12.a -> 4.16.13.a

    (cherry picked from commit b03de18acffdda51cb3a34698d083b3d5ed751f5)
    NeQuissimus committed Jun 4, 2018
    Copy the full SHA
    c58d0fc View commit details
12 changes: 11 additions & 1 deletion pkgs/development/compilers/julia/0.6.nix
Original file line number Diff line number Diff line change
@@ -50,11 +50,16 @@ let
url = "mirror://pypi/v/virtualenv/virtualenv-${virtualenvVersion}.tar.gz";
sha256 = "06fw4liazpx5vf3am45q2pdiwrv0id7ckv7n6zmpml29x6vkzmkh";
};

majorVersion = "0";
minorVersion = "6";
maintenanceVersion = "2";
version = "${majorVersion}.${minorVersion}.${maintenanceVersion}";
in

stdenv.mkDerivation rec {
pname = "julia";
version = "0.6.2";
inherit version;
name = "${pname}-${version}";

src = fetchzip {
@@ -183,6 +188,11 @@ stdenv.mkDerivation rec {
done
'';

passthru = {
inherit majorVersion minorVersion maintenanceVersion;
site = "share/julia/site/v${majorVersion}.${minorVersion}";
};

meta = {
description = "High-level performance-oriented dynamical language for technical computing";
homepage = https://julialang.org/;
Loading