nixpkgs/pkgs/development/libraries/nvidia-texture-tools/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

42 lines
972 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "nvidia-texture-tools";
version = "2.1.0";
src = fetchFromGitHub {
owner = "castano";
repo = "nvidia-texture-tools";
rev = version;
sha256 = "0p8ja0k323nkgm07z0qlslg6743vimy9rf3wad2968az0vwzjjyx";
};
nativeBuildInputs = [ cmake ];
outputs = [ "out" "dev" "lib" ];
postPatch = ''
# Make a recently added pure virtual function just virtual,
# to keep compatibility.
sed -i 's/virtual void endImage() = 0;/virtual void endImage() {}/' src/nvtt/nvtt.h
'';
cmakeFlags = [
"-DNVTT_SHARED=TRUE"
];
postInstall = ''
moveToOutput include "$dev"
moveToOutput lib "$lib"
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A set of cuda-enabled texture tools and compressors";
homepage = https://github.com/castano/nvidia-texture-tools;
license = licenses.mit;
platforms = platforms.unix;
};
}