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

Commits on Mar 8, 2019

  1. tikzit: 2.1 -> 2.1.4 (#57071)

    iblech authored and xeji committed Mar 8, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    20e32de View commit details
Showing with 3 additions and 8 deletions.
  1. +3 −8 pkgs/tools/typesetting/tikzit/default.nix
11 changes: 3 additions & 8 deletions pkgs/tools/typesetting/tikzit/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,13 @@

stdenv.mkDerivation rec {
name = "tikzit-${version}";
version = "2.1";
version = "2.1.4";

src = fetchFromGitHub {
owner = "tikzit";
repo = "tikzit";
# We don't reference the revision by the appropriate tag (v2.1) here,
# as the version of that tag still has the old version number in the
# relevant header file. This would cause a bad user experience, as
# "Help > About" would still display the old version number even though
# we indeed ship the new version 2.1.
rev = "97c2a2a7ecae12bf376558997805c24c3b6e3e07";
sha256 = "0sbgijbln18gac9989x484r62jlxyagkq0ap0fvzislrkac4z3y9";
rev = "v2.1.4";
sha256 = "121pgl2cdkksw48mjg6hzk7324ax6iw6fq7q3v1kdgwm8rwxm1fl";
};

nativeBuildInputs = [ qmake qttools flex bison ];