about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-08-26 00:53:26 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-08-26 00:53:26 -0700
commit792c8e8756ca4df76aa1ee0ddd360c8636b6487c (patch)
treefba507314d48e74dfec76c456e70066ccbe1c6c2 /pkgs/development/libraries
parent3f4144c30a6351dd79b177328ec4dea03e2ce45f (diff)
downloadnixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar.gz
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar.bz2
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar.lz
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar.xz
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.tar.zst
nixlib-792c8e8756ca4df76aa1ee0ddd360c8636b6487c.zip
allegro: 5.2.4.0 -> 5.2.5.0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/allegro/5.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/development/libraries/allegro/5.nix b/pkgs/development/libraries/allegro/5.nix
index 9f8ca69a70f1..b267c62d6c70 100644
--- a/pkgs/development/libraries/allegro/5.nix
+++ b/pkgs/development/libraries/allegro/5.nix
@@ -8,14 +8,14 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "allegro-${version}";
-  version = "5.2.4.0";
+  pname = "allegro";
+  version = "5.2.5.0";
 
   src = fetchFromGitHub {
     owner = "liballeg";
     repo = "allegro5";
     rev = version;
-    sha256 = "01y3hirn5b08f188nnhb2cbqj4vzysr7l2qpz2208srv8arzmj2d";
+    sha256 = "1jrnizpwznyxz2c7zb75lfy7l51ww5jlqfaahcrycfj1xay9mpqp";
   };
 
   buildInputs = [
@@ -28,14 +28,6 @@ stdenv.mkDerivation rec {
     libpulseaudio libpthreadstubs
   ];
 
-  patches = [
-   # fix compilation with mesa 18.2.5
-   (fetchpatch {
-     url = "https://github.com/liballeg/allegro5/commit/a40d30e21802ecf5c9382cf34af9b01bd3781e47.patch";
-     sha256 = "1f1xlj5y2vr6wzmcz04s8kxn8cfdwrg9kjlnvpz9dix1z3qjnd4m";
-   })
-  ];
-
   postPatch = ''
     sed -e 's@/XInput2.h@/XI2.h@g' -i CMakeLists.txt "src/"*.c
   '';