mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
shine: init at 3.1.1
This commit is contained in:
parent
9a5d5408aa
commit
c09ba4441a
22
pkgs/development/libraries/shine/default.nix
Normal file
22
pkgs/development/libraries/shine/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20018,6 +20018,8 @@ with pkgs;
|
|||||||
|
|
||||||
shhopt = callPackage ../development/libraries/shhopt { };
|
shhopt = callPackage ../development/libraries/shhopt { };
|
||||||
|
|
||||||
|
shine = callPackage ../development/libraries/shine { };
|
||||||
|
|
||||||
graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};
|
graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};
|
||||||
|
|
||||||
s2n-tls = callPackage ../development/libraries/s2n-tls { };
|
s2n-tls = callPackage ../development/libraries/s2n-tls { };
|
||||||
|
Loading…
Reference in New Issue
Block a user