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: 65fa7edaa0a9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9242acfbbc62
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Apr 3, 2020

  1. nim: 1.0.6 -> 1.2.0

    zimbatm authored and ehmry committed Apr 3, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nomadium Miguel Landaeta
    Copy the full SHA
    3420bd6 View commit details
  2. Copy the full SHA
    1d7a795 View commit details
  3. Merge pull request #83963 from NixOS/haskell-updates

    Update Haskell package set to LTS 15.6 (plus other fixes)
    peti authored Apr 3, 2020
    Copy the full SHA
    9242acf View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/compilers/nim/default.nix
  2. +2 −2 pkgs/servers/grocy/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/compilers/nim/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@

stdenv.mkDerivation rec {
pname = "nim";
version = "1.0.6";
version = "1.2.0";

src = fetchurl {
url = "https://nim-lang.org/download/${pname}-${version}.tar.xz";
sha256 = "1cv6bxc7w21455c0pv0r2h64ljyzw266jsk1fsgiiyk2rx8mfkhk";
sha256 = "TpRYOjc5ZYIYBeZl4KBfUvthCRZnbtsJFIlBQVY3xXU=";
};

enableParallelBuilding = true;
4 changes: 2 additions & 2 deletions pkgs/servers/grocy/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "grocy";
version = "2.6.1";
version = "2.6.2";

src = fetchurl {
url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip";
sha256 = "1fq1zlxxhpcxj67xxlgf20dia95xcimgnm13cr56sy9f2vjx58m6";
sha256 = "1cjkyv50vwx24xb1mxgy51mr4qqsqgixjww06rql77d9czmmd94k";
};

nativeBuildInputs = [ unzip ];