Skip to content

Commit

Permalink
m4acut: Init at 0.1.2 (#110660)
Browse files Browse the repository at this point in the history
* m4acut: Init at 0.1.2

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

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
  • Loading branch information
chkno and SuperSandro2000 authored Jan 26, 2021
1 parent 4a3d942 commit 68953d0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/audio/m4acut/default.nix
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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; };
Expand Down

0 comments on commit 68953d0

Please sign in to comment.