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

Commits on Mar 31, 2018

  1. tiled: 1.1.3 -> 1.1.4

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools.
    
    This update was made based on information from https://repology.org/metapackage/tiled/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 1.1.4 with grep in /nix/store/zq69nbafa5zpw6l8i0a2vq4z1yzbhl6b-tiled-1.1.4
    - directory tree listing: https://gist.github.com/a9382bc683245aa13b0c434a9a7a6b63
    R. RyanTM authored and globin committed Mar 31, 2018

    Unverified

    The committer email address is not verified.
    Copy the full SHA
    cb0ac86 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/editors/tiled/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/editors/tiled/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
name = "tiled-${version}";
version = "1.1.3";
version = "1.1.4";

src = fetchFromGitHub {
owner = "bjorn";
repo = "tiled";
rev = "v${version}";
sha256 = "0rf50w7nkdm70999q1mj7sy5hyjj41qjf4izi849q9a7xnhddv44";
sha256 = "0ln8lis9g23wp3w70xwbkzqmmbkd02cdx6z7msw9lrpkjzkj7mlr";
};

nativeBuildInputs = [ pkgconfig qmake ];