m4acut: Init at 0.1.2 (#110660)

* m4acut: Init at 0.1.2

* Update pkgs/applications/audio/m4acut/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
chkno 2021-01-25 16:37:32 -08:00 committed by GitHub
parent 4a3d942b06
commit 68953d0486
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, autoreconfHook, fetchFromGitHub, l-smash }:
stdenv.mkDerivation rec {
pname = "m4acut";
version = "0.1.2";
src = fetchFromGitHub {
owner = "nu774";
repo = "m4acut";
rev = "v${version}";
sha256 = "1hzf9f1fzmlpnxjaxhs2w22wzb28vd87ycaddnix1mmhvh3nvzkd";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ l-smash ];
meta = with lib; {
description = "Losslessly & gaplessly cut m4a (AAC in MP4) files.";
homepage = "https://github.com/nu774/m4acut";
license = with licenses; [ bsdOriginal zlib ];
maintainers = [ maintainers.chkno ];
platforms = platforms.all;
};
}

View file

@ -23254,6 +23254,8 @@ in
lyx = libsForQt5.callPackage ../applications/misc/lyx { };
m4acut = callPackage ../applications/audio/m4acut { };
mac = callPackage ../development/libraries/mac { };
macdylibbundler = callPackage ../development/tools/misc/macdylibbundler { inherit (darwin) cctools; };