add agatheme
This commit is contained in:
parent
8b358f2557
commit
b2eec9065a
3 changed files with 50 additions and 3 deletions
|
@ -15,5 +15,7 @@ final: prev: {
|
|||
withDNSCrypt = true;
|
||||
withTFO = true;
|
||||
};
|
||||
|
||||
gitea-agatheme = prev.callPackage ./gitea-agatheme { };
|
||||
};
|
||||
}
|
||||
|
|
15
nixos/pkgs/gitea-agatheme/default.nix
Normal file
15
nixos/pkgs/gitea-agatheme/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ lib, stdenv, fetchurl }: stdenv.mkDerivation rec {
|
||||
pname = "gitea-agatheme";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://git.lain.faith/attachments/4c2c2237-1e67-458e-8acd-92a20d382777";
|
||||
sha256 = "sha256-uwtg6BAR5J28Ls3naQkJg7xBEfZPXVS5INH+bsVn4Uk=";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" ];
|
||||
|
||||
installPhase = ''
|
||||
cp $src $out
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue