nixpkgs/pkgs/by-name/ti/tinycompress/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

23 lines
539 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 = "Userspace library for anyone who wants to use the ALSA compressed APIs";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ k900 ];
};
}