-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Will be used by Pipewire later.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters