summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-03-10 12:01:13 +0000
committerGitHub <noreply@github.com>2022-03-10 12:01:13 +0000
commitcac809141eb742190550d7b627116d2b612686fa (patch)
treed642d0d9b7ecedf752e818b4d7a1f9473e461ff2 /pkgs/development/libraries
parentc46a02f95725d864b657dd915c925b246a223f6e (diff)
parent83580a2e4f57872c25393bdf7e8c14bb402ddca8 (diff)
downloadnixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar.gz
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar.bz2
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar.lz
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar.xz
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.tar.zst
nixpkgs-cac809141eb742190550d7b627116d2b612686fa.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/shine/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/shine/default.nix b/pkgs/development/libraries/shine/default.nix
new file mode 100644
index 00000000000..8e5d02e632d
--- /dev/null
+++ b/pkgs/development/libraries/shine/default.nix
@@ -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 ];
+  };
+}