about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/shine/default.nix
blob: 433e4dcc6179515aea87c197e0f25fbd9e785dbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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";
    mainProgram = "shineenc";
    homepage = "https://github.com/toots/shine";
    license = licenses.lgpl2Only;
    maintainers = with maintainers; [ dandellion ];
  };
}