Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / shine / default.nix
blob8e5d02e632d23e20d49e014cad768a93f93df948
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "shine";
5   version = "3.1.1";
7   src = fetchFromGitHub {
8     owner = "toots";
9     repo = "shine";
10     rev = version;
11     sha256 = "06nwylqqji0i1isdprm2m5qsdj4qiywcgnp69c5b55pnw43f07qg";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     description = "Fast fixed-point mp3 encoding library";
18     homepage = "https://github.com/toots/shine";
19     license = licenses.lgpl2Only;
20     maintainers = with maintainers; [ dandellion ];
21   };