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

Commits on Jul 7, 2018

  1. texstudio: 2.12.8 -> 2.12.10 (#43154)

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/texstudio/versions.
    
    Version release notes (from GitHub):
    TeXstudio 2.12.10
    ----------------
    - bug fixes
    - fix structure view with Qt >5.10
    
    These checks were done:
    
    - built on NixOS
    - Warning: no invocation of /nix/store/lpnv7mgqxh4dvngjkda0l04lsqg99ad0-texstudio-2.12.10/bin/texstudio had a zero exit code or showed the expected version
    - 0 of 1 passed binary check by having a zero exit code.
    - 0 of 1 passed binary check by having the new version present in output.
    - found 2.12.10 with grep in /nix/store/lpnv7mgqxh4dvngjkda0l04lsqg99ad0-texstudio-2.12.10
    - directory tree listing: https://gist.github.com/30bd87321ac5fe523c2a1eb759af22c9
    - du listing: https://gist.github.com/04363c828381c5273c6c80caa9b552f4
    r-ryantm authored and dotlambda committed Jul 7, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0e59b1c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/editors/texstudio/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/editors/texstudio/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
pname = "texstudio";
version = "2.12.8";
version = "2.12.10";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "${pname}-org";
repo = pname;
rev = version;
sha256 = "0f1az7398rnxmm3m9b2jcz7pd9x445fjsv8w85k2j261n5cyfqx2";
sha256 = "0mkx7fym41hwd7cdg31ji2hxlv3gxx0sa6bnap51ryxmq8sxdjhq";
};

nativeBuildInputs = [ qt5.qmake pkgconfig ];