mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
cynthion: init at 0.1.7
This commit is contained in:
parent
93b0565dd2
commit
57fb63c931
26
pkgs/by-name/cy/cynthion/package.nix
Normal file
26
pkgs/by-name/cy/cynthion/package.nix
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user