Skip to content

Commit

Permalink
tinycompress: init at 1.2.8
Browse files Browse the repository at this point in the history
Will be used by Pipewire later.
  • Loading branch information
K900 committed Mar 14, 2023
1 parent 60e9cbe commit ef69521
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/libraries/tinycompress/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit ef69521

Please sign in to comment.