summary refs log tree commit diff
path: root/pkgs/applications/audio/opustags
diff options
context:
space:
mode:
authorKierán Meinhardt <kmein@posteo.de>2020-10-24 10:56:29 +0200
committerKierán Meinhardt <kmein@posteo.de>2020-10-24 21:11:25 +0200
commitaf0eab7a79583973328a6f1883f0338e14383097 (patch)
tree32e11dd217d6dd2233dfe0ebd390edee4380ca03 /pkgs/applications/audio/opustags
parent558303ba076e4affcc52a7d2f7d57308b29520f2 (diff)
downloadnixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar.gz
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar.bz2
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar.lz
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar.xz
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.tar.zst
nixpkgs-af0eab7a79583973328a6f1883f0338e14383097.zip
opustags: init at 1.3.0
Diffstat (limited to 'pkgs/applications/audio/opustags')
-rw-r--r--pkgs/applications/audio/opustags/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/audio/opustags/default.nix b/pkgs/applications/audio/opustags/default.nix
new file mode 100644
index 00000000000..eb056c720d1
--- /dev/null
+++ b/pkgs/applications/audio/opustags/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, lib, cmake, pkgconfig, libogg, fetchFromGitHub, libiconv }:
+stdenv.mkDerivation rec {
+  pname = "opustags";
+  version = "1.3.0";
+
+  src = fetchFromGitHub {
+    owner = "fmang";
+    repo = "opustags";
+    rev = version;
+    sha256 = "09z0cdg20algaj2yyhfz3hxh1biwjjvzx1pc2vdc64n8lkswqsc1";
+  };
+
+  buildInputs = [ libogg ];
+
+  nativeBuildInputs = [ cmake pkgconfig ] ++ lib.optional stdenv.isDarwin libiconv;
+
+  meta = with lib; {
+    homepage = "https://github.com/fmang/opustags";
+    description = "Ogg Opus tags editor";
+    platforms = platforms.all;
+    maintainers = [ maintainers.kmein ];
+    license = licenses.bsd3;
+  };
+}