depot/third_party/nixpkgs/pkgs/development/libraries/SDL_stretch/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

20 lines
508 B
Nix

{ lib, stdenv, fetchurl, SDL }:
stdenv.mkDerivation rec {
pname = "SDL_stretch";
version = "0.3.1";
src = fetchurl {
url = "mirror://sourceforge/sdl-stretch/${version}/${pname}-${version}.tar.bz2";
sha256 = "1mzw68sn4yxbp8429jg2h23h8xw2qjid51z1f5pdsghcn3x0pgvw";
};
buildInputs = [ SDL ];
meta = with lib; {
description = "Stretch Functions For SDL";
homepage = "https://sdl-stretch.sourceforge.net/";
license = licenses.lgpl2;
platforms = platforms.linux;
};
}