mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
23 lines
541 B
Nix
23 lines
541 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tinycompress";
|
|
version = "1.2.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/tinycompress/${pname}-${version}.tar.bz2";
|
|
hash = "sha256-6754jCgyjnzKJFqvkZSlrQ3JHp4NyIPCz5/rbULJ8/w=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|