mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-20 00:47:52 +01:00
24 lines
343 B
Nix
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";
|
|
};
|
|
|
|
}
|