about summary refs log tree commit diff
path: root/pkgs/by-name/sd/SDL_stretch/package.nix
blob: f7267b86fd6d67e7569d4754a0aec2fe9651bc27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  lib,
  SDL,
  fetchurl,
  stdenv,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "SDL_stretch";
  version = "0.3.1";

  src = fetchurl {
    url = "mirror://sourceforge/sdl-stretch/${finalAttrs.version}/SDL_stretch-${finalAttrs.version}.tar.bz2";
    hash = "sha256-fL8L+rAMPt1uceGH0qLEgncEh4DiySQIuqt7YjUy/Nc=";
  };

  nativeBuildInputs = [ SDL ];

  buildInputs = [ SDL ];

  strictDeps = true;

  meta = {
     homepage = "https://sdl-stretch.sourceforge.net/";
     description = "Stretch Functions For SDL";
     license = lib.licenses.lgpl2;
     maintainers = lib.teams.sdl.members
                  ++ (with lib.maintainers; [ ]);
     inherit (SDL.meta) platforms;
  };
})