Skip to content

Instantly share code, notes, and snippets.

@kiloreux
Created June 12, 2018 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiloreux/3d53352f0fc240c8aa146c6afceaba23 to your computer and use it in GitHub Desktop.
Save kiloreux/3d53352f0fc240c8aa146c6afceaba23 to your computer and use it in GitHub Desktop.
with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/195620b77085a4e746db33894526116f9062086b.tar.gz) {};
rec {
ffmpeg333 = pkgs.callPackage ./ffmpeg/v3.3.3.nix { };
ffmpeg100 = pkgs.callPackage ./ffmpeg/v1.0.0.nix { };
ffmpeg = buildEnv {
name = "ffmpeg";
paths = [ ffmpeg333 ffmpeg100 ];
pathsToLink = [ "/bin" ];
ignoreCollisions = true;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment