mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-20 00:47:52 +01:00
30 lines
451 B
Nix
30 lines
451 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-4d0TwJubfJrThctvE50HpPg0gqdJy595hewEcjfXlrs=";
|
|
domain = "git.pvv.ntnu.no";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r ssp-theme $out/bin/
|
|
chmod -R +x $out/bin/
|
|
'';
|
|
|
|
}
|