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: e43e173ae129
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 051345a82324
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 14, 2020

  1. sacc: 1.01 → 1.02

    sternenseemann committed Nov 14, 2020
    Copy the full SHA
    00251c0 View commit details
  2. Merge pull request #98852 from sternenseemann/sacc-1.02

    sacc: 1.01 → 1.02
    Ninjatrappeur authored Nov 14, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    051345a View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/applications/networking/gopher/sacc/default.nix
11 changes: 5 additions & 6 deletions pkgs/applications/networking/gopher/sacc/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{ stdenv, fetchgit, ncurses
{ stdenv, fetchurl, ncurses
, patches ? [] # allow users to easily override config.def.h
}:

stdenv.mkDerivation rec {
pname = "sacc";
version = "1.01";
version = "1.02";

src = fetchgit {
url = "git://bitreich.org/sacc";
rev = version;
sha256 = "0n6ghbi715m7hrxzqggx1bpqj8h7569s72b9bzk6m4gd29jaq9hz";
src = fetchurl {
url = "ftp://bitreich.org/releases/sacc/sacc-${version}.tgz";
sha512 = "18ja95cscgjaj1xqn70dj0482f76d0561bdcc47flqfsjh4mqckjqr65qv7awnw6rzm03i5cp45j1qx12y0y83skgsar4pplmy8q014";
};

inherit patches;