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: a0248a0b6819
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: a70d3bab72dd
Choose a head ref

Commits on Sep 2, 2018

  1. Copy the full SHA
    7fbfba7 View commit details

Commits on Sep 25, 2018

  1. bibutils: 6.6 -> 6.7

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/bibutils/versions
    r-ryantm committed Sep 25, 2018
    Copy the full SHA
    ad3af8a View commit details

Commits on Sep 26, 2018

  1. net_snmp: build with default perl (#47373)

    volth authored and xeji committed Sep 26, 2018
    Copy the full SHA
    92a9c5a View commit details
  2. stdenv: partial revert of f2bb59

    /cc @Ericson2314
    
    This line broke MacOS cross compilation. paxctl cannot be built on
    macOS. Maybe it can be fixed, but no reason to break things
    unnecessarily.
    
    Regardless, you definitely need to be more careful about backporting.
    I think it’s fine to move fast and break things on master but
    with release-18.09 we should be more careful. Something like more
    automated testing for cross compilation would also be
    helpful (hopefully even making it block).
    matthewbauer committed Sep 26, 2018
    Copy the full SHA
    6eef893 View commit details
  3. Merge pull request #47326 from r-ryantm/auto-update/bibutils

    bibutils: 6.6 -> 6.7
    Mic92 authored Sep 26, 2018
    Copy the full SHA
    957eec3 View commit details
  4. arpack: 3.5.0 -> 3.6.3

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/arpack/versions
    r-ryantm authored and globin committed Sep 26, 2018
    Copy the full SHA
    0e5e4ae View commit details
  5. go-2fa: Init at 1.1.0

    rvolosatovs authored and globin committed Sep 26, 2018
    Copy the full SHA
    eb7b217 View commit details
  6. libsigrokdecode: 0.5.1 -> 0.5.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/libsigrokdecode/versions
    r-ryantm authored and globin committed Sep 26, 2018
    Copy the full SHA
    0441fae View commit details
  7. google-compute-engine: 20180510 -> 20180905

    The list of corresponding NixOS services are also updated
    zimbatm authored and globin committed Sep 26, 2018
    Copy the full SHA
    9fb7986 View commit details
  8. nodejs-10_x: 10.9.0 -> 10.11.0

    jwoudenberg authored and globin committed Sep 26, 2018
    Copy the full SHA
    e0f4610 View commit details
  9. Copy the full SHA
    82feb4b View commit details
  10. linux: 4.4.157 -> 4.4.158

    NeQuissimus committed Sep 26, 2018
    Copy the full SHA
    656ca22 View commit details
  11. linux: 4.9.128 -> 4.9.129

    NeQuissimus committed Sep 26, 2018
    Copy the full SHA
    8e4d980 View commit details
  12. linux: 4.14.71 -> 4.14.72

    NeQuissimus committed Sep 26, 2018
    Copy the full SHA
    61452c8 View commit details
  13. linux: 4.18.9 -> 4.18.10

    NeQuissimus committed Sep 26, 2018
    Copy the full SHA
    24c31d4 View commit details
  14. Copy the full SHA
    82f2ae0 View commit details
  15. nfs-utils: 2.3.2 -> 2.3.3 (#46989)

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/nfs-utils/versions
    r-ryantm authored and xeji committed Sep 26, 2018
    Copy the full SHA
    9390a26 View commit details
  16. arc-theme: 2017-05-12 -> 20180715 (#43490)

    rembo10 authored and xeji committed Sep 26, 2018
    Copy the full SHA
    ca3231a View commit details
  17. fetchFromGitLab: Fix grouping issue for group arg

    Issue introduced by c3612b9.
    
    Example output before that commit (witch a random package using
    fetchFromGitLab):
    
    $ nix-instantiate --eval -A hiawatha.src.urls
    [ "https://gitlab.com/api/v4/projects/hsleisink%2Fhiawatha/repository/archive.tar.gz?sha=v10.8.1" ]
    
    After the commit:
    
    $ nix-instantiate --eval -A hiawatha.src.urls
    [ "https://gitlab.com/api/v4/projects/%2Fhsleisink%2Fhiawatha/repository/archive.tar.gz?sha=v10.8.1" ]
    
    And with this very commit, which fixes the issue:
    
    $ nix-instantiate --eval -A hiawatha.src.urls
    [ "https://gitlab.com/api/v4/projects/hsleisink%2Fhiawatha/repository/archive.tar.gz?sha=v10.8.1" ]
    
    The problem was that it has used optionalString in conjunction with "+",
    so the optionalString only applied to the left-hand side of the +
    operator.
    
    Thanks to @ryantm for reporting the issue at:
    
    NixOS/nixpkgs@c3612b9#r220576764
    
    Signed-off-by: aszlig <aszlig@nix.build>
    Reported-by: Ryan Mulligan <ryan@ryantm.com>
    aszlig committed Sep 26, 2018
    Copy the full SHA
    593062d View commit details
  18. stdenv: partial revert of f2bb59e

    /cc @Ericson2314
    
    PR was NixOS/nixpkgs#46857
    
    This line broke MacOS cross compilation. paxctl cannot be built on
    macOS. Maybe it can be fixed, but no reason to break things
    unnecessarily.
    
    Regardless, you definitely need to be more careful about backporting.
    I think it’s fine to move fast and break things on master but
    with release-18.09 we should be more careful. Something like more
    automated testing for cross compilation would also be
    helpful (hopefully even making it block).
    
    (cherry picked from commit f9c4075)
    matthewbauer authored and Ericson2314 committed Sep 26, 2018
    Copy the full SHA
    607063f View commit details
  19. Merge commit '607063f61be3b19a2da054776b360d9c5b03038a'

    This gets the partial revert on the common ancestor of master and
    staging, easier further devlopment.
    Ericson2314 committed Sep 26, 2018
    Copy the full SHA
    30d24a2 View commit details
  20. Copy the full SHA
    e7ca9af View commit details
  21. alloy: add alloy5 and take maintainership (#47262)

    Add alloy5 (currently, 5.0.0.1), update homepage and downloadPage, and
    take maintainership of the package.
    Amin Bandali authored and Mic92 committed Sep 26, 2018
    Copy the full SHA
    4586ff7 View commit details
  22. Merge pull request #45934 from utdemir/master

    bluejeans-gui: init at 1.6.39
    matthewbauer authored Sep 26, 2018
    Copy the full SHA
    07cc937 View commit details
  23. nheko: 0.6.0 -> 0.6.1

    dtzWill committed Sep 26, 2018
    Copy the full SHA
    98cb225 View commit details
  24. Copy the full SHA
    a3fd298 View commit details
  25. Revert "stdenv: partial revert of f2bb59e"

    This reverts commit 607063f.
    Ericson2314 committed Sep 26, 2018
    Copy the full SHA
    f49ca01 View commit details
  26. Merge pull request #47400 from obsidiansystems/paxctl-darwin-no-mass-…

    …rebuild
    
    paxctl: Fix darwin and cross without mass-rebuild
    Ericson2314 authored Sep 26, 2018
    Copy the full SHA
    e59a2ef View commit details
  27. coq: 8.8.1 -> 8.8.2 (#47388)

    vbgl authored and xeji committed Sep 26, 2018
    Copy the full SHA
    23900fe View commit details
  28. vlc: 3.0.3 -> 3.0.4 (#47406)

    coreyoconnor authored and xeji committed Sep 26, 2018
    Copy the full SHA
    26ce265 View commit details
  29. Merge pull request #47402 from dtzWill/update/nheko-0.6.1

    nheko: 0.6.0 -> 0.6.1
    dtzWill authored Sep 26, 2018
    Copy the full SHA
    de39960 View commit details

Commits on Sep 27, 2018

  1. libiio: install python bindings

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Sep 27, 2018
    Copy the full SHA
    af48e57 View commit details
  2. pcsc-cyberjack: 3.99.5_SP09 -> 3.99.5_SP12

    3.99.5_SP12:
    
      * Add support for cyberJack one MF
    
    3.99.5_SP11:
    
      * Add support for cyberJack one
    
    3.99.5_SP10:
    
      * Add support for SHUReader and SISReader
      * Update to the Reiner-SCT repository rev cyberJack@1305
    
    Signed-off-by: aszlig <aszlig@nix.build>
    aszlig committed Sep 27, 2018
    Copy the full SHA
    f37f34e View commit details
  3. pcsc-cyberjack: Also install cjflash tool

    This tool is necessary in order to update the firmware of the secoder.
    
    The reason I've added this to a separate output "tools" is because it
    clearly is not relevant for the PCSC driver itself and it's also very
    rarely needed.
    
    I've also verified wether the closure of the PCSC plugin env still only
    contains the main output and that's the case.
    
    There are also other tools - cjBingoTest and cjgeldkarte, where the
    former doesn't compile due to cjeca32.h not being found and cjgeldkarte,
    which does compile but tries to dlopen() the library and subsequently
    fails.
    
    Both of these tools however look like they're just performing tests and
    are not very useful outside of development, so I opted to not include
    them.
    
    Signed-off-by: aszlig <aszlig@nix.build>
    aszlig committed Sep 27, 2018
    Copy the full SHA
    a70d3ba View commit details
Showing with 289 additions and 148 deletions.
  1. +5 −0 maintainers/maintainer-list.nix
  2. +2 −0 nixos/modules/services/databases/postgresql.nix
  3. +2 −1 nixos/modules/services/networking/shairport-sync.nix
  4. +15 −29 nixos/modules/virtualisation/google-compute-image.nix
  5. +49 −0 pkgs/applications/networking/instant-messengers/bluejeans/default.nix
  6. +2 −2 pkgs/applications/networking/instant-messengers/nheko/default.nix
  7. +1 −0 pkgs/applications/science/logic/coq/default.nix
  8. +2 −0 pkgs/applications/version-management/git-and-tools/default.nix
  9. +22 −0 pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
  10. +2 −14 pkgs/applications/video/vlc/default.nix
  11. +11 −2 pkgs/development/libraries/libiio/default.nix
  12. +2 −2 pkgs/development/libraries/science/math/arpack/default.nix
  13. +60 −46 pkgs/development/tools/alloy/default.nix
  14. +2 −2 pkgs/development/tools/libsigrokdecode/default.nix
  15. +2 −2 pkgs/development/web/nodejs/v10.nix
  16. +27 −17 pkgs/misc/themes/arc/default.nix
  17. +2 −2 pkgs/os-specific/linux/kernel/linux-4.14.nix
  18. +2 −2 pkgs/os-specific/linux/kernel/linux-4.18.nix
  19. +2 −2 pkgs/os-specific/linux/kernel/linux-4.4.nix
  20. +2 −2 pkgs/os-specific/linux/kernel/linux-4.9.nix
  21. +2 −2 pkgs/os-specific/linux/nfs-utils/default.nix
  22. +13 −3 pkgs/os-specific/linux/paxctl/default.nix
  23. +2 −2 pkgs/servers/shairport-sync/default.nix
  24. +2 −2 pkgs/tools/misc/bibutils/default.nix
  25. +23 −0 pkgs/tools/security/2fa/default.nix
  26. +10 −3 pkgs/tools/security/pcsc-cyberjack/default.nix
  27. +2 −2 pkgs/tools/virtualization/google-compute-engine/default.nix
  28. +15 −8 pkgs/top-level/all-packages.nix
  29. +1 −1 pkgs/top-level/coq-packages.nix
  30. +5 −0 pkgs/top-level/python-packages.nix
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -221,6 +221,11 @@
github = "amiloradovsky";
name = "Andrew Miloradovsky";
};
aminb = {
email = "amin@aminb.org";
github = "aminb";
name = "Amin Bandali";
};
aminechikhaoui = {
email = "amine.chikhaoui91@gmail.com";
github = "AmineChikhaoui";
2 changes: 2 additions & 0 deletions nixos/modules/services/databases/postgresql.nix
Original file line number Diff line number Diff line change
@@ -188,6 +188,8 @@ in
uid = config.ids.uids.postgres;
group = "postgres";
description = "PostgreSQL server user";
home = "${cfg.dataDir}";
useDefaultShell = true;
};

users.groups.postgres.gid = config.ids.gids.postgres;
3 changes: 2 additions & 1 deletion nixos/modules/services/networking/shairport-sync.nix
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ in
};

arguments = mkOption {
default = "-v -o pulse";
default = "-v -d pulse";
description = ''
Arguments to pass to the daemon. Defaults to a local pulseaudio
server.
@@ -72,6 +72,7 @@ in
serviceConfig = {
User = cfg.user;
ExecStart = "${pkgs.shairport-sync}/bin/shairport-sync ${cfg.arguments}";
RuntimeDirectory = "shairport-sync";
};
};

44 changes: 15 additions & 29 deletions nixos/modules/virtualisation/google-compute-image.nix
Original file line number Diff line number Diff line change
@@ -97,8 +97,8 @@ in
"google-instance-setup.service"
"google-network-setup.service"
];
wantedBy = [ "multi-user.target" ];
requires = ["network.target"];
wantedBy = ["multi-user.target"];
path = with pkgs; [ shadow ];
serviceConfig = {
Type = "simple";
@@ -113,8 +113,8 @@ in
"google-instance-setup.service"
"google-network-setup.service"
];
requires = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
requires = ["network.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
Type = "simple";
ExecStart = "${gce}/bin/google_clock_skew_daemon --debug";
@@ -123,7 +123,7 @@ in

systemd.services.google-instance-setup = {
description = "Google Compute Engine Instance Setup";
after = ["fs.target" "network-online.target" "network.target" "rsyslog.service"];
after = ["local-fs.target" "network-online.target" "network.target" "rsyslog.service"];
before = ["sshd.service"];
wants = ["local-fs.target" "network-online.target" "network.target"];
wantedBy = [ "sshd.service" "multi-user.target" ];
@@ -134,15 +134,17 @@ in
};
};

systemd.services.google-ip-forwarding-daemon = {
description = "Google Compute Engine IP Forwarding Daemon";
after = ["network.target" "google-instance-setup.service" "google-network-setup.service"];
systemd.services.google-network-daemon = {
description = "Google Compute Engine Network Daemon";
after = ["local-fs.target" "network-online.target" "network.target" "rsyslog.service" "google-instance-setup.service"];
wants = ["local-fs.target" "network-online.target" "network.target"];
requires = ["network.target"];
partOf = ["network.target"];
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ iproute ];
serviceConfig = {
Type = "simple";
ExecStart = "${gce}/bin/google_ip_forwarding_daemon --debug";
ExecStart = "${gce}/bin/google_network_daemon --debug";
Type = "oneshot";
};
};

@@ -153,8 +155,9 @@ in
"network-online.target"
"network.target"
"rsyslog.service"
"systemd-resolved.service"
"google-instance-setup.service"
"google-network-setup.service"
"google-network-daemon.service"
];
wants = [ "local-fs.target" "network-online.target" "network.target"];
wantedBy = [ "multi-user.target" ];
@@ -167,23 +170,6 @@ in
};
};

systemd.services.google-network-setup = {
description = "Google Compute Engine Network Setup";
after = [
"local-fs.target"
"network-online.target"
"network.target"
"rsyslog.service"
];
wants = [ "local-fs.target" "network-online.target" "network.target"];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${gce}/bin/google_network_setup --debug";
KillMode = "process";
Type = "oneshot";
};
};

systemd.services.google-startup-scripts = {
description = "Google Compute Engine Startup Scripts";
after = [
@@ -192,9 +178,9 @@ in
"network.target"
"rsyslog.service"
"google-instance-setup.service"
"google-network-setup.service"
"google-network-daemon.service"
];
wants = [ "local-fs.target" "network-online.target" "network.target"];
wants = ["local-fs.target" "network-online.target" "network.target"];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${gce}/bin/google_metadata_script_runner --debug --script-type startup";
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ stdenv, fetchurl, rpmextract, patchelf, libnotify, libcap, cairo, pango, fontconfig, udev, dbus
, gtk2, atk, expat, gdk_pixbuf, freetype, nspr, glib, nss, gconf, libX11, libXrender, libXtst, libXdamage
, libXi, libXext, libXfixes, libXcomposite, alsaLib, bash
}:

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

src =
fetchurl {
url = "https://swdl.bluejeans.com/desktop/linux/1.36/${version}/bluejeans-${version}.x86_64.rpm";
sha256 = "0sbv742pzqd2cxn3kq10lfi16jah486i9kyrmi8l1rpb9fhyw2m1";
};

buildInputs = [ patchelf rpmextract ];

libPath =
stdenv.lib.makeLibraryPath
[ libnotify libcap cairo pango fontconfig gtk2 atk expat gdk_pixbuf dbus udev.lib
freetype nspr glib stdenv.cc stdenv.cc.cc.lib nss gconf libX11 libXrender libXtst libXdamage
libXi libXext libXfixes libXcomposite alsaLib
];

buildCommand = ''
mkdir -p $out/bin/
cd $out
rpmextract $src
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
opt/bluejeans/bluejeans-bin
patchelf \
--set-rpath ${libPath} \
opt/bluejeans/bluejeans-bin
patchelf \
--replace-needed libudev.so.0 libudev.so.1 \
opt/bluejeans/bluejeans-bin
ln -s $out/opt/bluejeans/bluejeans $out/bin/bluejeans
substituteInPlace $out/bin/bluejeans \
--replace '#!/bin/bash' '#!${bash}/bin/bash'
chmod +x $out/bin/bluejeans
'';

meta = {
description = "Video, audio, and web conferencing that works together with the collaboration tools you use every day.";
license = stdenv.lib.licenses.unfree;
platforms = [ "x86_64-linux" ];
};
}
Original file line number Diff line number Diff line change
@@ -20,13 +20,13 @@ let
in
stdenv.mkDerivation rec {
name = "nheko-${version}";
version = "0.6.0";
version = "0.6.1";

src = fetchFromGitHub {
owner = "mujx";
repo = "nheko";
rev = "v${version}";
sha256 = "1qd2c5684722jlpgqyxq6pbb1rdk1zc3sk88mkjyqypj1k0pj3dc";
sha256 = "00jigca7kcqwm57qalz7ifz9p6v7p3pnamjvpkxjjix2rm9wmg2q";
};

# If, on Darwin, you encounter the error
1 change: 1 addition & 0 deletions pkgs/applications/science/logic/coq/default.nix
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ let
"8.7.2" = "0a0657xby8wdq4aqb2xsxp3n7pmc2w4yxjmrb2l4kccs1aqvaj4w";
"8.8.0" = "13a4fka22hdxsjk11mgjb9ffzplfxyxp1sg5v1c8nk1grxlscgw8";
"8.8.1" = "1hlf58gwazywbmfa48219amid38vqdl94yz21i11b4map6jfwhbk";
"8.8.2" = "1lip3xja924dm6qblisk1bk0x8ai24s5xxqxphbdxj6djglj68fd";
}."${version}";
coq-version = builtins.substring 0 3 version;
camlp5 = ocamlPackages.camlp5_strict;
Original file line number Diff line number Diff line change
@@ -115,6 +115,8 @@ let

pre-commit = callPackage ./pre-commit { };

pass-git-helper = python3Packages.callPackage ./pass-git-helper { };

qgit = qt5.callPackage ./qgit { };

stgit = callPackage ./stgit {
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg }:

buildPythonApplication rec {
pname = "pass-git-helper";
version = "0.4";

src = fetchFromGitHub {
owner = "languitar";
repo = "pass-git-helper";
rev = "${version}";
sha256 = "1zccbmq5l6asl9qm1f90vg9467y3spmv3ayrw07qizrj43yfd9ap";
};

propagatedBuildInputs = [ pyxdg ];

meta = with stdenv.lib; {
homepage = "https://github.com/languitar/pass-git-helper";
description = "A git credential helper interfacing with pass, the standard unix password manager";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vanzef ];
};
}
16 changes: 2 additions & 14 deletions pkgs/applications/video/vlc/default.nix
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@ assert (withQt5 -> qtbase != null && qtsvg != null && qtx11extras != null);

stdenv.mkDerivation rec {
name = "vlc-${version}";
version = "3.0.3";
version = "3.0.4";

src = fetchurl {
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
sha256 = "0lavzly8l0ll1d9iris9cnirgcs77g48lxj14058dxqkvd5v1a4v";
sha256 = "17jsq0zqpqyxw4ckvjba0hf6zk8ywc4wf8sy3z03hh3ij0vxpwq1";
};

# VLC uses a *ton* of libraries for various pieces of functionality, many of
@@ -52,18 +52,6 @@ stdenv.mkDerivation rec {
# set the path to the compiler
BUILDCC = "${stdenv.cc}/bin/gcc";

patches = [
(fetchpatch {
name = "vlc-qt5.11.patch";
url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/vlc-qt5.11.patch?h=packages/vlc";
sha256 = "0yh65bhhaz876cazhagnafs1dr61184lpj3y0m3y7k37bswykj8p";
})
(fetchpatch {
url = "https://github.com/videolan/vlc/commit/26e2d3906658c30f2f88f4b1bc9630ec43bf5525.patch";
sha256 = "0sm73cbzxva8sww526bh5yin1k2pdkvj826wdlmqnj7xf0f3mki4";
})
];

postPatch = ''
substituteInPlace configure \
--replace /bin/echo echo
13 changes: 11 additions & 2 deletions pkgs/development/libraries/libiio/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub
, cmake, flex, bison
, libxml2
, libxml2, python
}:

stdenv.mkDerivation rec {
@@ -14,11 +14,20 @@ stdenv.mkDerivation rec {
sha256 = "05sbvvjka03qi080ad6g2y6gfwqp3n3zv7dpv237dym0zjyxqfa7";
};

outputs = [ "out" "lib" "dev" ];
outputs = [ "out" "lib" "dev" "python" ];

nativeBuildInputs = [ cmake flex bison ];
buildInputs = [ libxml2 ];

postInstall = ''
mkdir -p $python/lib/${python.libPrefix}/site-packages/
touch $python/lib/${python.libPrefix}/site-packages/
cp ../bindings/python/iio.py $python/lib/${python.libPrefix}/site-packages/
substitute ../bindings/python/iio.py $python/lib/${python.libPrefix}/site-packages/iio.py \
--replace 'libiio.so.0' $lib/lib/libiio.so.0
'';

meta = with stdenv.lib; {
description = "API for interfacing with the Linux Industrial I/O Subsystem";
homepage = https://github.com/analogdevicesinc/libiio;
4 changes: 2 additions & 2 deletions pkgs/development/libraries/science/math/arpack/default.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@
with stdenv.lib;

let
version = "3.5.0";
version = "3.6.3";
in
stdenv.mkDerivation {
name = "arpack-${version}";

src = fetchurl {
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
sha256 = "0f8jx3fifmj9qdp289zr7r651y1q48k1jya859rqxq62mvis7xsh";
sha256 = "0lzlcsrjsi36pv5bnipwjnyg2fx3nrv31bw2klwrg11gb8g5bwv4";
};

nativeBuildInputs = [ autoconf automake gettext libtool ];
Loading