nixpkgs/pkgs/tools/video/atomicparsley/default.nix

35 lines
915 B
Nix
Raw Normal View History

2017-04-14 21:10:28 +02:00
{ stdenv, fetchhg, autoreconfHook, zlib, darwin }:
2015-03-13 23:06:37 +01:00
stdenv.mkDerivation rec {
name = "atomicparsley-${version}";
2017-04-14 21:10:28 +02:00
version = "0.9.6";
2015-03-13 23:06:37 +01:00
2017-04-14 21:10:28 +02:00
src = fetchhg {
url = "https://bitbucket.org/wez/atomicparsley";
sha256 = "05n4kbn91ps52h3wi1qb2jwygjsc01qzx4lgkv5mvwl5i49rj8fm";
2015-03-13 23:06:37 +01:00
};
2017-04-14 21:10:28 +02:00
buildInputs =
[ autoreconfHook
zlib
] ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa;
2017-03-21 23:35:54 +01:00
2015-03-13 23:06:37 +01:00
installPhase = "install -D AtomicParsley $out/bin/AtomicParsley";
meta = with stdenv.lib; {
description = ''
A lightweight command line program for reading, parsing and
setting metadata into MPEG-4 files
'';
2017-04-14 21:10:28 +02:00
longDescription = ''
This is a maintained fork of the original AtomicParsley.
'';
homepage = https://bitbucket.org/wez/atomicparsley;
2015-03-13 23:06:37 +01:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ pjones ];
};
}