about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-08-08 12:59:42 -0700
committerGitHub <noreply@github.com>2022-08-08 21:59:42 +0200
commitfb520531bbed31c8f4adbc9aa87a786eec2f51f7 (patch)
treefb188222c47d34d7fb94fb9ab0ff5529cab0db2d /pkgs/development/libraries
parenta47896bf817e7324471e687fc2bb2312fff682ce (diff)
ptex: 2.4.1 -> 2.4.2 (#185348)
* ptex: 2.4.1 -> 2.4.2

* Update default.nix

Co-authored-by: Jonas Heinrich <onny@project-insanity.org>
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/ptex/default.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/pkgs/development/libraries/ptex/default.nix b/pkgs/development/libraries/ptex/default.nix
index 5d40ff183e77c..a5827fe188c54 100644
--- a/pkgs/development/libraries/ptex/default.nix
+++ b/pkgs/development/libraries/ptex/default.nix
@@ -1,27 +1,21 @@
-{ lib, stdenv, fetchFromGitHub, zlib, cmake, pkg-config }:
+{ lib, stdenv, fetchFromGitHub, zlib, cmake }:
 
 stdenv.mkDerivation rec
 {
   pname = "ptex";
-  version = "2.4.1";
+  version = "2.4.2";
 
   src = fetchFromGitHub {
     owner = "wdas";
     repo = "ptex";
     rev = "v${version}";
-    sha256 = "sha256-TuwgZJHvQUqBEFeZYvzpi+tmXB97SkOairYnuUahtSA=";
+    sha256 = "sha256-PR1ld9rXmL6BK4llznAsD5PNvi3anFMz2i9NDsG95DQ=";
   };
 
   outputs = [ "bin" "dev" "out" "lib" ];
 
   nativeBuildInputs = [ cmake ];
-  buildInputs = [ zlib pkg-config ];
-
-  # Can be removed in the next release
-  # https://github.com/wdas/ptex/pull/42
-  patchPhase = ''
-    echo v${version} >version
-  '';
+  buildInputs = [ zlib ];
 
   meta = with lib; {
     description = "Per-Face Texture Mapping for Production Rendering";