Skip to content

Commit

Permalink
cynthion: init at 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless committed Nov 13, 2024
1 parent dbdf14d commit bcf6ed7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/cy/cynthion/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
python3,
fetchFromGitHub,
}:

let
python = python3.override {
self = python3;
packageOverrides = _: super: {
amaranth = super.amaranth.overridePythonAttrs rec {
version = "0.4.1";

src = fetchFromGitHub {
owner = "amaranth-lang";
repo = "amaranth";
rev = "refs/tags/v${version}";
sha256 = "sha256-VMgycvxkphdpWIib7aZwh588En145RgYlG2Zfi6nnDo=";
};

postPatch = null;
};
};
};
in

python.pkgs.toPythonApplication python.pkgs.cynthion

0 comments on commit bcf6ed7

Please sign in to comment.