2023-03-27 19:17:25 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tinycompress";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "1.2.11";
|
2023-03-27 19:17:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://alsa/tinycompress/${pname}-${version}.tar.bz2";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-6754jCgyjnzKJFqvkZSlrQ3JHp4NyIPCz5/rbULJ8/w=";
|
2023-03-27 19:17:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "http://www.alsa-project.org/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Userspace library for anyone who wants to use the ALSA compressed APIs";
|
2023-03-27 19:17:25 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ k900 ];
|
|
|
|
};
|
|
|
|
}
|