mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
af8e579938
- finalAttrs - strictDeps - sdl team
32 lines
689 B
Nix
32 lines
689 B
Nix
{
|
|
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;
|
|
};
|
|
})
|