-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* m4acut: Init at 0.1.2 * Update pkgs/applications/audio/m4acut/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
- Loading branch information
1 parent
4a3d942
commit 68953d0
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters