nixpkgs/pkgs/development/libraries/l-smash/default.nix

29 lines
639 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, which }:
2019-05-18 04:47:07 +00:00
stdenv.mkDerivation rec {
pname = "l-smash";
version = "2.14.5";
src = fetchFromGitHub {
owner = "l-smash";
repo = pname;
rev = "v${version}";
sha256 = "0rcq9727im6kd8da8b7kzzbzxdldvmh5nsljj9pvr4m3lj484b02";
};
nativeBuildInputs = [ which ];
2021-05-17 20:01:05 +00:00
configureFlags = [
"--cc=cc"
"--cross-prefix=${stdenv.cc.targetPrefix}"
];
meta = with lib; {
homepage = "http://l-smash.github.io/l-smash/";
2019-05-18 04:47:07 +00:00
description = "MP4 container utilities";
license = licenses.isc;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}