summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorDaniel Olsen <daniel.olsen99@gmail.com>2021-10-30 21:53:14 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-03-10 11:45:28 +0100
commitdb40016cf64a1e39a4fc45cb41bd01752e92471c (patch)
treec05fd76aa83ea2071da3d350c5a1e2bda808bff2 /pkgs/development/ocaml-modules
parentc09ba4441a8faad76b573abbc4b5ae60178e1db4 (diff)
downloadnixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar.gz
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar.bz2
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar.lz
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar.xz
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.tar.zst
nixpkgs-db40016cf64a1e39a4fc45cb41bd01752e92471c.zip
ocamlPackages.shine: init at 0.2.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/shine/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/shine/default.nix b/pkgs/development/ocaml-modules/shine/default.nix
new file mode 100644
index 00000000000..3aa8cce7980
--- /dev/null
+++ b/pkgs/development/ocaml-modules/shine/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, shine }:
+
+buildDunePackage rec {
+  pname = "shine";
+  version = "0.2.2";
+
+  useDune2 = true;
+
+  src = fetchFromGitHub {
+    owner = "savonet";
+    repo = "ocaml-shine";
+    rev = "2e1de686ea031f1056df389161ea2b721bfdb39e";
+    sha256 = "0v6i4ym5zijki6ffkp2qkp00lk4fysjhmg690xscj23gwz4zx8ir";
+  };
+
+  buildInputs = [ dune-configurator ];
+  propagatedBuildInputs = [ shine ];
+
+  meta = with lib; {
+    homepage = "https://github.com/savonet/ocaml-shine";
+    description = "Bindings to the fixed-point mp3 encoding library shine";
+    license = licenses.gpl2Only;
+    maintainers = with maintainers; [ dandellion ];
+  };
+}