depot/pkgs/by-name/ti/tinycompress/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

22 lines
543 B
Nix

{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "tinycompress";
version = "1.2.11";
src = fetchurl {
url = "mirror://alsa/tinycompress/tinycompress-${version}.tar.bz2";
hash = "sha256-6754jCgyjnzKJFqvkZSlrQ3JHp4NyIPCz5/rbULJ8/w=";
};
meta = with lib; {
homepage = "http://www.alsa-project.org/";
description = "Userspace library for anyone who wants to use the ALSA compressed APIs";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ k900 ];
};
}