Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "tinycompress";
9 version = "1.2.13";
10
11 src = fetchurl {
12 url = "mirror://alsa/tinycompress/tinycompress-${version}.tar.bz2";
13 hash = "sha256-Dv5svXv/MZg+DUFt8ENnZ2ZcxM1w0njAbODoPg7qtds=";
14 };
15
16 meta = with lib; {
17 homepage = "http://www.alsa-project.org/";
18 description = "Userspace library for anyone who wants to use the ALSA compressed APIs";
19 license = licenses.bsd3;
20 platforms = platforms.linux;
21 maintainers = with maintainers; [ k900 ];
22 };
23}