1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-17 18:34:41 +00:00
nixpkgs/pkgs/development/libraries/alure/default.nix
2020-04-10 17:54:53 +01:00

21 lines
559 B
Nix

{ stdenv, fetchurl, cmake, openal }:
stdenv.mkDerivation rec {
pname = "alure";
version = "1.2";
src = fetchurl {
url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
};
buildInputs = [ cmake openal ];
meta = with stdenv.lib; {
description = "A utility library to help manage common tasks with OpenAL applications";
homepage = "https://kcat.strangesoft.net/alure.html";
license = licenses.mit;
platforms = platforms.linux;
};
}