Some packages
This commit is contained in:
parent
739f38e215
commit
bbf0d97deb
4 changed files with 29 additions and 44 deletions
|
|
@ -10,10 +10,8 @@
|
|||
git
|
||||
helix
|
||||
neofetch
|
||||
# nix-your-shell # Currently only available in unstable
|
||||
sysz
|
||||
tmux
|
||||
toolbox
|
||||
tree
|
||||
wget
|
||||
];
|
||||
|
|
|
|||
|
|
@ -65,6 +65,33 @@ in {
|
|||
virt-manager
|
||||
yad
|
||||
wezterm
|
||||
zed-editor
|
||||
(appimageTools.wrapType2 rec {
|
||||
pname = "ondsel-es";
|
||||
version = "2024.2.2";
|
||||
|
||||
src = fetchurl {
|
||||
url =
|
||||
"https://github.com/Ondsel-Development/FreeCAD/releases/download/2024.2.2/Ondsel_ES_2024.2.2.37240-Linux-x86_64.AppImage";
|
||||
hash = "sha256-UrCftzDV4HJWOK4QxFKZUOZ/dJquiLu/e9WTfdo1Sh0=";
|
||||
};
|
||||
|
||||
extraInstallCommands = let
|
||||
appimageContents =
|
||||
appimageTools.extractType2 { inherit pname version src; };
|
||||
in ''
|
||||
install -Dm444 ${appimageContents}/com.ondsel.ES.desktop -t $out/share/applications/
|
||||
install -Dm444 ${appimageContents}/Ondsel.svg -t $out/share/pixmaps/
|
||||
'';
|
||||
|
||||
extraPkgs = pkgs: [ pkgs.python313 ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.ondsel.com";
|
||||
license = licenses.lgpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
})
|
||||
] ++ kdepkgs;
|
||||
|
||||
programs = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue