Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / alure / default.nix
bloba1bb5798b0e9875586e1cf12e4746867bfe5971e
1 { lib, stdenv, fetchurl, cmake, openal }:
3 stdenv.mkDerivation rec {
4   pname = "alure";
5   version = "1.2";
7   src = fetchurl {
8     url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
9     sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
10   };
12   nativeBuildInputs = [ cmake ];
13   buildInputs = [ openal ];
15   meta = with lib; {
16     description = "A utility library to help manage common tasks with OpenAL applications";
17     homepage = "https://github.com/kcat/alure";
18     license = licenses.mit;
19     platforms = platforms.linux;
20   };