Commit c09ba444 authored by Daniel Løvbrøtte Olsen's avatar Daniel Løvbrøtte Olsen Committed by Vincent Laporte
Browse files

shine: init at 3.1.1

parent 9a5d5408
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -20018,6 +20018,8 @@ with pkgs;
  shhopt = callPackage ../development/libraries/shhopt { };
  shine = callPackage ../development/libraries/shine { };
  graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};
  s2n-tls = callPackage ../development/libraries/s2n-tls { };