about summary refs log tree commit diff
path: root/pkgs/development/libraries/shine
diff options
context:
space:
mode:
authorDaniel Olsen <daniel.olsen99@gmail.com>2021-10-30 21:51:16 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-10 11:45:28 +0100
commitc09ba4441a8faad76b573abbc4b5ae60178e1db4 (patch)
tree5857bf05e699d2eaace982212b828a5d5dc18f71 /pkgs/development/libraries/shine
parent9a5d5408aac316e9dffcf44d3f86551dd73008fc (diff)
shine: init at 3.1.1
Diffstat (limited to 'pkgs/development/libraries/shine')
-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 0000000000000..8e5d02e632d23
--- /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 ];
+  };
+}