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

Commits on Mar 20, 2018

  1. st: 0.8 -> 0.8.1

    pSub committed Mar 20, 2018
    Copy the full SHA
    7da0786 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/st/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/st/default.nix
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@ with stdenv.lib;

let patches' = if patches == null then [] else patches;
in stdenv.mkDerivation rec {
name = "st-0.8";
name = "st-0.8.1";

src = fetchurl {
url = "http://dl.suckless.org/st/${name}.tar.gz";
sha256 = "0xkmb7f1qq01ny1667c7bkf2zi3h4ryc6zpml22ccrkxs0h3jdbp";
sha256 = "09k94v3n20gg32xy7y68p96x9dq5msl80gknf9gbvlyjp3i0zyy4";
};

patches = patches';