Add tabbed box maker
This commit is contained in:
parent
1d04b20eb8
commit
4d385d3575
3 changed files with 24 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 { };
|
||||
}
|
||||
|
|
|
|||
22
pkgs/tabbed-box-maker/default.nix
Normal file
22
pkgs/tabbed-box-maker/default.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue