mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
26 lines
668 B
Nix
26 lines
668 B
Nix
{ 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;
|
|
mainProgram = "m4acut";
|
|
};
|
|
}
|