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

Commits on Dec 19, 2017

  1. Copy the full SHA
    8ad5fc4 View commit details

Commits on Dec 20, 2017

  1. Merge branch 'termite-v13'

    jtojnar committed Dec 20, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    jtojnar Jan Tojnar
    Copy the full SHA
    69fa2d6 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/termite/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/termite/default.nix
Original file line number Diff line number Diff line change
@@ -3,14 +3,14 @@
}:

let
version = "12";
version = "13";
termite = stdenv.mkDerivation {
name = "termite-${version}";

src = fetchgit {
url = "https://github.com/thestinger/termite";
rev = "refs/tags/v${version}";
sha256 = "0s6dyg3vcqk5qcx90bs24wdnd3p56rdjdcanx4pcxvp6ksjl61jz";
sha256 = "02cn70ygl93ghhkhs3xdxn5b1yadc255v3yp8cmhhyzsv5027hvj";
};

postPatch = "sed '1i#include <math.h>' -i termite.cc";