about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix b/nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix
new file mode 100644
index 000000000000..0caa6277b5a9
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/nv/nvidia-texture-tools/package.nix
@@ -0,0 +1,50 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+}:
+
+stdenv.mkDerivation {
+  pname = "nvidia-texture-tools";
+  version = "2.1.2-unstable-2020-12-21";
+
+  src = fetchFromGitHub {
+    owner = "castano";
+    repo = "nvidia-texture-tools";
+    rev = "aeddd65f81d36d8cb7b169b469ef25156666077e";
+    hash = "sha256-BYNm8CxPQbfmnnzNmOQ2Dc8HSyO8mkqzYsBZ5T80398=";
+  };
+
+  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
+  '' + lib.optionalString stdenv.isAarch64 ''
+    # remove x86_64-only libraries
+    sed -i '/bc1enc/d' src/nvtt/tests/CMakeLists.txt
+    sed -i '/libsquish/d;/CMP_Core/d' extern/CMakeLists.txt
+  '';
+
+  outputs = [ "out" "dev" "lib" ];
+
+  nativeBuildInputs = [
+    cmake
+  ];
+
+  cmakeFlags = [
+    (lib.cmakeBool "NVTT_SHARED" true)
+  ];
+
+  postInstall = ''
+    moveToOutput include "$dev"
+    moveToOutput lib "$lib"
+  '';
+
+  meta = with lib; {
+    description = "A set of cuda-enabled texture tools and compressors";
+    homepage = "https://github.com/castano/nvidia-texture-tools";
+    license = licenses.mit;
+    maintainers = with maintainers; [ wegank ];
+    platforms = platforms.unix;
+  };
+}