nixpkgs/pkgs/development/libraries/SDL_sound/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

21 lines
539 B
Nix

{ stdenv, fetchurl, SDL, libvorbis, flac, libmikmod }:
stdenv.mkDerivation rec {
name = "SDL_sound-${version}";
version = "1.0.3";
src = fetchurl {
url = "https://icculus.org/SDL_sound/downloads/${name}.tar.gz";
sha256 = "1pz6g56gcy7pmmz3hhych3iq9jvinml2yjz15fjqjlj8pc5zv69r";
};
buildInputs = [ SDL libvorbis flac libmikmod ];
meta = with stdenv.lib; {
description = "SDL sound library";
platforms = platforms.linux;
license = licenses.lgpl21;
homepage = https://www.icculus.org/SDL_sound/;
};
}