Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, stdenv 3, fetchurl 4}: 5 6stdenv.mkDerivation rec { 7 pname = "tinycompress"; 8 version = "1.2.8"; 9 10 src = fetchurl { 11 url = "mirror://alsa/tinycompress/${pname}-${version}.tar.bz2"; 12 hash = "sha256-L4l+URLNO8pnkLXOz9puBmLIvF7g+6uXKyR6DMYg1mw="; 13 }; 14 15 meta = with lib; { 16 homepage = "http://www.alsa-project.org/"; 17 description = "a userspace library for anyone who wants to use the ALSA compressed APIs"; 18 license = licenses.bsd3; 19 platforms = platforms.linux; 20 maintainers = with maintainers; [ k900 ]; 21 }; 22}