about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/shine/default.nix
blob: 8e5d02e632d23e20d49e014cad768a93f93df948 (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, 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 ];
  };
}