summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/SDL2_gfx
diff options
context:
space:
mode:
authorCarles Pagès <page@ruiec.cat>2018-03-06 11:25:19 +0100
committerCarles Pagès <page@ruiec.cat>2018-03-06 20:32:00 +0100
commit08049f41e45f61073c405f3a7e09a63f50f426c7 (patch)
tree18984274e21ec6d528ab3582781904bdd9a79276 /pkgs/development/libraries/SDL2_gfx
parent231f213ffaffa59e643b6d26167e866e434203b1 (diff)
SDL2_gfx: 1.0.1 -> 1.0.4
Setting myself as maintainer. It was only set to bjg due to an original copy-paste.
Diffstat (limited to 'pkgs/development/libraries/SDL2_gfx')
-rw-r--r--pkgs/development/libraries/SDL2_gfx/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/SDL2_gfx/default.nix b/pkgs/development/libraries/SDL2_gfx/default.nix
index a630e9cead8a..ec61b8b45053 100644
--- a/pkgs/development/libraries/SDL2_gfx/default.nix
+++ b/pkgs/development/libraries/SDL2_gfx/default.nix
@@ -1,12 +1,13 @@
{ stdenv, darwin, fetchurl, SDL2 }:
stdenv.mkDerivation rec {
- name = "SDL2_gfx-${version}";
- version = "1.0.1";
+ name = "${pname}-${version}";
+ pname = "SDL2_gfx";
+ version = "1.0.4";
src = fetchurl {
- url = "mirror://sourceforge/sdl2gfx/${name}.tar.gz";
- sha256 = "16jrijzdp095qf416zvj9gs2fqqn6zkyvlxs5xqybd0ip37cp6yn";
+ url = "http://www.ferzkopp.net/Software/${pname}/${name}.tar.gz";
+ sha256 = "0qk2ax7f7grlxb13ba0ll3zlm8780s7j8fmrhlpxzjgdvldf1q33";
};
buildInputs = [ SDL2 ]
@@ -38,7 +39,7 @@ stdenv.mkDerivation rec {
homepage = https://sourceforge.net/projects/sdlgfx/;
license = licenses.zlib;
- maintainers = with maintainers; [ bjg ];
+ maintainers = with maintainers; [ cpages ];
platforms = platforms.unix;
};
}