cleanup and format

This commit is contained in:
Thilo Billerbeck 2024-02-27 02:54:02 +01:00
parent 1121201acd
commit 07a1841fda
37 changed files with 336 additions and 427 deletions
home-manager/pkgs

View file

@ -1,7 +1,4 @@
{ lib
, stdenv
, fetchFromGitHub
}:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "docker-craft-cms-dev-env";
@ -20,7 +17,8 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
description = "Docker image for local development of sites based on Craft CMS";
description =
"Docker image for local development of sites based on Craft CMS";
homepage = "https://github.com/codemonauts/docker-craft-cms-dev-env";
license = licenses.mit;
maintainers = with maintainers; [ ];

View file

@ -1,8 +1,4 @@
{ lib
, stdenv
, buildNpmPackage
, fetchFromGitHub
}:
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "spx-gc";
@ -25,7 +21,8 @@ buildNpmPackage rec {
'';
meta = with lib; {
description = "SPX is a graphics control client for live video productions and live streams using CasparCG, OBS, vMix, or similar software";
description =
"SPX is a graphics control client for live video productions and live streams using CasparCG, OBS, vMix, or similar software";
homepage = "https://github.com/TuomoKu/SPX-GC#npminstall";
license = licenses.mit;
maintainers = with maintainers; [ ];

View file

@ -1,7 +1,7 @@
{ lib, python3Packages }:
{ python3Packages }:
with python3Packages;
buildPythonApplication {
name = "toggl-time-grouper";
src = ./.;
propagatedBuildInputs = [ pandas ];
}
}