Skip to content

Commit

Permalink
icestudio: init at 0.12
Browse files Browse the repository at this point in the history
Co-authored-by: Abdullah Imad <
me@imad.nyc
>
Co-authored-by: Alberto Merino <
amerinor01@gmail.com
>
Co-authored-by: Enric Morales <
me@enric.me
>
Co-authored-by: Jack Leightcap <
jack@leightcap.com
>
Co-authored-by: Roland Coeurjoly <
rolandcoeurjoly@gmail.com
>
  • Loading branch information
kiike authored and imadnyc committed Jul 2, 2024
1 parent 271ba43 commit ffef136
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/ic/icestudio/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, appimageTools, fetchurl }:
let
pname = "icestudio";
version = "0.12";

src = fetchurl {
url = "https://github.com/FPGAwars/icestudio/releases/download/v${version}/${pname}-${version}-linux64.AppImage";
hash = "sha256-s+hvD+S2f30u8GrYadFOIjexmyicw6bOlFOvyYyjHeE=";
};
extraPkgs = pkgs: [ pkgs.python3 ];

meta = with lib; {
description = "Visual editor for open FPGA boards";
homepage = "https://github.com/FPGAwars/icestudio";
license = licenses.gpl2;
maintainers = with maintainers; [ imadnyc jleightcap ];
mainProgram = "icestudio";
platforms = ["x86_64-linux"];
};
in
appimageTools.wrapType2 {
inherit
pname
version
src
extraPkgs
meta
;
}

0 comments on commit ffef136

Please sign in to comment.