mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 04:07:28 +00:00
tinycompress: init at 1.2.8
Will be used by Pipewire later.
This commit is contained in:
parent
60e9cbe0f9
commit
ef6952158c
22
pkgs/development/libraries/tinycompress/default.nix
Normal file
22
pkgs/development/libraries/tinycompress/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tinycompress";
|
||||
version = "1.2.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://alsa/tinycompress/${pname}-${version}.tar.bz2";
|
||||
hash = "sha256-L4l+URLNO8pnkLXOz9puBmLIvF7g+6uXKyR6DMYg1mw=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.alsa-project.org/";
|
||||
description = "a userspace library for anyone who wants to use the ALSA compressed APIs";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ k900 ];
|
||||
};
|
||||
}
|
@ -12747,6 +12747,8 @@ with pkgs;
|
||||
|
||||
tinycbor = callPackage ../development/libraries/tinycbor { };
|
||||
|
||||
tinycompress = callPackage ../development/libraries/tinycompress { };
|
||||
|
||||
tinyfecvpn = callPackage ../tools/networking/tinyfecvpn { };
|
||||
|
||||
tinygltf = callPackage ../development/libraries/tinygltf { };
|
||||
|
Loading…
Reference in New Issue
Block a user