about summary refs log tree commit diff
path: root/pkgs/by-name/ti/tinycompress/package.nix
blob: b6002c0205b07bc253f93598f293c6b3e4eb90a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}