mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
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:
parent
4a3d942b06
commit
68953d0486
24
pkgs/applications/audio/m4acut/default.nix
Normal file
24
pkgs/applications/audio/m4acut/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user