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

Commits on Oct 27, 2019

  1. nvidia-texture-tools: 2.1.0 -> unstable-2019-10-27

    Moving to unsable as the latest release is broken on darwin, closes #41109.
    mmahut committed Oct 27, 2019
    Copy the full SHA
    b0e5aac View commit details
  2. Copy the full SHA
    75f1bb0 View commit details
  3. Merge pull request #72086 from mmahut/nvidia-texture-tools

    nvidia-texture-tools: 2.1.0 -> unstable-2019-10-27
    mmahut authored Oct 27, 2019
    Copy the full SHA
    58c618f View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/nvidia-texture-tools/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/nvidia-texture-tools/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "nvidia-texture-tools";
version = "2.1.0";
version = "unstable-2019-10-27";

src = fetchFromGitHub {
owner = "castano";
repo = "nvidia-texture-tools";
rev = version;
sha256 = "0p8ja0k323nkgm07z0qlslg6743vimy9rf3wad2968az0vwzjjyx";
rev = "a131e4c6b0b7c9c73ccc3c9e6f1c7e165be86bcc";
sha256 = "1qzyr3ib5dpxyq1y33lq02qv4cww075sm9bm4f651d34q5x38sk3";
};

nativeBuildInputs = [ cmake ];
@@ -37,5 +37,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/castano/nvidia-texture-tools;
license = licenses.mit;
platforms = platforms.unix;
broken = stdenv.isAarch64;
};
}