depot/third_party/nixpkgs/pkgs/by-name/ti/tinycompress/package.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

22 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 ];
};
}