Files
pvv-nixos-config/packages/simplesamlphptheme/default.nix
2026-02-17 10:36:12 +01:00

24 lines
343 B
Nix

{ lib
, php
, stdenv
, writeText
, fetchFromGitea
, extra_files ? { }
}:
stdenv.mkDerivation {
pname = "ssp-theme";
version = "v1.2026";
src = fetchFromGitea {
owner = "drift";
repo = "ssp-theme";
rev = "master";
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
domain = "git.pvv.ntnu.no";
};
}