nixpkgs/pkgs/development/libraries/shine/default.nix
2022-03-10 11:45:28 +01:00

23 lines
544 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "shine";
version = "3.1.1";
src = fetchFromGitHub {
owner = "toots";
repo = "shine";
rev = version;
sha256 = "06nwylqqji0i1isdprm2m5qsdj4qiywcgnp69c5b55pnw43f07qg";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "Fast fixed-point mp3 encoding library";
homepage = "https://github.com/toots/shine";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ dandellion ];
};
}