Add tabbed box maker

This commit is contained in:
Jakob Lechner 2022-09-27 22:09:34 +00:00
parent 1d04b20eb8
commit 4d385d3575
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
3 changed files with 24 additions and 0 deletions

View file

@ -4,4 +4,5 @@ lib.mkIf nixosConfig.myConfig.gui.enable {
home.packages = with pkgs; [
inkscape
];
xdg.configFile."inkscape/extensions/tabbed-box-maker".source = pkgs.tabbed-box-maker;
}

View file

@ -5,5 +5,6 @@ in
{
fpvout = callPackage ./fpvout { };
mute-indicator = callPackage ./mute-indicator { };
tabbed-box-maker = callPackage ./tabbed-box-maker { };
tradebyte-attendance = callPackage ./tradebyte-attendance { };
}

View file

@ -0,0 +1,22 @@
{ stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation {
name = "tabbed-box-maker";
version = "1.1";
src = fetchFromGitHub {
owner = "paulh-rnd";
repo = "TabbedBoxMaker";
rev = "7df0e6c711aeef36b6a89e3f3fe456b09225c836";
fetchSubmodules = true;
sha256 = "8TNNVMSwbvcEwkvMHecHtGLEpiX3F0g0EGsgO1YKBGQ=";
};
dontBild = true;
installPhase = ''
mkdir $out
cp * $out
'';
}