diff options
| -rw-r--r-- | tv/5pkgs/override/jc.nix | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/tv/5pkgs/override/jc.nix b/tv/5pkgs/override/jc.nix new file mode 100644 index 0000000..346dd3e --- /dev/null +++ b/tv/5pkgs/override/jc.nix @@ -0,0 +1,21 @@ +self: super: + +let +  version = "1.21.0"; +in + +# Prevent downgrades. +assert self.lib.versionAtLeast version super.jc.version; + +self.python3.pkgs.toPythonApplication +  (self.python3.pkgs.jc.overrideAttrs +    (oldAttrs: { +      name = "jc-${version}"; +      version = version; +      src = self.fetchFromGitHub { +        owner = "kellyjonbrazil"; +        repo = "jc"; +        rev = "v${version}"; +        sha256 = "sha256-kS42WokR7ZIqIPi8LbX4tmtjn37tckea2ELbuqzTm2o"; +      }; +    })) | 
