lolcommits: init at 0.16.2

- initial lolcommits packaging done by fzakaria
- mplayer with v4l webcam support taken from nixpkgs-unstable
This commit is contained in:
Trolli Schmittlauch 2021-03-11 02:28:47 +01:00
parent 53798d3241
commit 39b80ee20a
11 changed files with 469 additions and 13 deletions

View file

@ -8,13 +8,12 @@
{ pkgs ? import <nixpkgs> { } }:
{
rec {
# The `lib`, `modules`, and `overlay` names are special
lib = import ./lib { inherit pkgs; }; # functions
modules = import ./modules; # NixOS modules
overlays = import ./overlays; # nixpkgs overlays
example-package = pkgs.callPackage ./pkgs/example-package { };
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
lolcommits = pkgs.callPackage ./pkgs/lolcommits {mplayer = mplayerV4l;};
mplayerV4l = pkgs.callPackage ./pkgs/mplayer {v4lSupport = true;};
}