l-smash: init at 2.4.15

This commit is contained in:
Tadeo Kondrak 2019-05-17 22:47:07 -06:00 committed by Lassulus
parent 0040ca936e
commit 0dfa25e17c
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec {
pname = "l-smash";
version = "2.14.5";
src = fetchFromGitHub {
owner = "l-smash";
repo = pname;
rev = "v${version}";
sha256 = "0rcq9727im6kd8da8b7kzzbzxdldvmh5nsljj9pvr4m3lj484b02";
};
nativeBuildInputs = [ which ];
meta = with stdenv.lib; {
homepage = http://l-smash.github.io/l-smash/;
description = "MP4 container utilities";
license = licenses.isc;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}

View File

@ -11031,6 +11031,8 @@ in
libkrb5 = krb5.override { type = "lib"; };
kerberos = libkrb5; # TODO: move to aliases.nix
l-smash = callPackage ../development/libraries/l-smash { };
languageMachines = recurseIntoAttrs (import ../development/libraries/languagemachines/packages.nix { inherit callPackage; });
lasem = callPackage ../development/libraries/lasem { };