mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
553 B
Nix
24 lines
553 B
Nix
{ 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;
|
|
};
|
|
}
|