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

Commits on Oct 9, 2019

  1. Merge #68730: opencpn: 5.0.0 -> unstable-2019-05-15

    This unbreaks the build.
    
    (cherry picked from commit 3f39ab6)
    vcunat committed Oct 9, 2019

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    43dabca View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/applications/misc/opencpn/default.nix
9 changes: 4 additions & 5 deletions pkgs/applications/misc/opencpn/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@
gettext, glib, portaudio }:

stdenv.mkDerivation rec {
pname = "opencpn";
version = "5.0.0";
pname = "opencpn-unstable";
version = "2019-05-15";

src = fetchFromGitHub {
owner = "OpenCPN";
repo = "OpenCPN";
rev = "v${version}";
sha256 = "1xv3h6svw9aay5ixpql231md3pf00qxvhg62z88daraf18hlkfja";
rev = "83a3c4b5ff011d4eb070f009e0a46d194b177047";
sha256 = "00s1mxnkf1gg41hrz0zp8ypkp98py0m1c22im2zd09k6lcddxw5p";
};

nativeBuildInputs = [ pkgconfig ];
@@ -29,6 +29,5 @@ stdenv.mkDerivation rec {
platforms = [ "x86_64-linux" ];
license = stdenv.lib.licenses.gpl2;
homepage = https://opencpn.org/;
broken = true;
};
}