Compare commits

...

1 Commits

Author SHA1 Message Date
Aidan Gauland 073e0268cd
[BROKEN] awsmfunc: unstable-2021-01-26 -> 1.3.4
Addresses #19
2023-10-28 21:57:45 +13:00
1 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
{ lib, vapoursynthPlugins, buildPythonPackage, fetchgit, numpy, vapoursynth }:
{ lib, vapoursynthPlugins, buildPythonPackage, fetchFromGitHub, numpy, vapoursynth }:
let
propagatedBinaryPlugins = with vapoursynthPlugins; [
descale
@ -9,12 +9,13 @@ let
in
buildPythonPackage rec {
pname = "awsmfunc";
version = "unstable-2021-01-26";
version = "1.3.4";
src = fetchgit {
url = "https://git.concertos.live/AHD/awsmfunc.git";
rev = "e57ad6a976d059ffcf8ae59ee986bdbefef53cd0";
sha256 = "0j2gzxcz3sy0h7r5a1dhl6xjgjd2m66mw4kfm8q2glar5b7gn0k7";
src = fetchFromGitHub {
owner = "OpusGang";
repo = pname;
rev = "v${version}";
hash = lib.fakeHash;
};
# This does not depend on vapoursynth (since this is used from within
@ -37,8 +38,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "A VapourSynth function collection";
homepage = "https://git.concertos.live/AHD/awsmfunc";
license = licenses.unfree; # no license
homepage = "https://github.com/OpusGang/awsmfunc";
license = licenses.mit;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};