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

Commits on Jun 2, 2019

  1. sdcc 3.7.0 → 3.8.0

    fixes #62439
    nomeata authored and bjornfor committed Jun 2, 2019
    Copy the full SHA
    6c51634 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/compilers/sdcc/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/compilers/sdcc/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoconf, bison, boost, flex, texinfo, gputils ? null
{ stdenv, fetchurl, autoconf, bison, boost, flex, texinfo, zlib, gputils ? null
, excludePorts ? [] }:

with stdenv.lib;
@@ -10,14 +10,14 @@ in

stdenv.mkDerivation rec {
name = "sdcc-${version}";
version = "3.7.0";
version = "3.8.0";

src = fetchurl {
url = "mirror://sourceforge/sdcc/sdcc-src-${version}.tar.bz2";
sha256 = "13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5";
sha256 = "08dvvdxd99hb50wvs8m986v3scfj1rdjw18js7pk5n3vxf6nccdk";
};

buildInputs = [ autoconf bison boost flex gputils texinfo ];
buildInputs = [ autoconf bison boost flex gputils texinfo zlib ];

configureFlags = map (f: "--disable-${f}-port") excludedPorts;