Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 402a074cfe0d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 743e685d98f7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2018

  1. isocodes: 3.74 -> 3.79

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
    
    This update was made based on information from https://repology.org/metapackage/iso-codes/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 3.79 with grep in /nix/store/v3cwlccrh7g5m03wj8j7fhwc9xyrdj1q-iso-codes-3.79
    - directory tree listing: https://gist.github.com/0636a62cebb498fde2d51579ff9c3e99
    ryantm authored and obadz committed Mar 30, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    743e685 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/iso-codes/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/iso-codes/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{stdenv, fetchurl, gettext, python3, xz}:

stdenv.mkDerivation rec {
name = "iso-codes-3.74";
name = "iso-codes-${version}";
version = "3.79";

src = fetchurl {
url = "http://pkg-isocodes.alioth.debian.org/downloads/${name}.tar.xz";
sha256 = "1vkaxkcx8h8lbg3z3jjfjs1x1rz1l01j6ll46ysza2gym37g7x11";
url = "https://salsa.debian.org/iso-codes-team/iso-codes/uploads/ef8de8bc12e0512d26ed73436a477871/${name}.tar.xz";
sha256 = "08i8hjy0qjlw9kd9i87jx967ihwh45l2xi55q1aa5265sind7byb";
};
patchPhase = ''
for i in `find . -name \*.py`