dotfiles/pkgs/yori-cc.nix

24 lines
436 B
Nix
Raw Normal View History

2018-03-11 18:28:25 +01:00
{ stdenv, callPackage }:
2016-01-28 02:59:31 +01:00
stdenv.mkDerivation {
2020-05-21 17:39:38 +02:00
name = "yori-cc-1.5";
2021-05-29 18:05:31 +02:00
2020-05-21 17:39:38 +02:00
src = builtins.fetchGit {
url = "git@git.yori.cc:yorick/yori-cc.git";
2023-03-01 11:29:09 +01:00
rev = "4e3a1e9f4a5171b4c2fd54b03c9047536d5a0214";
2016-01-28 02:59:31 +01:00
};
2021-05-29 18:05:31 +02:00
2016-01-28 02:59:31 +01:00
buildInputs = [ ];
installPhase = ''
mkdir -p "$out/web"
cp -ra * "$out/web"
'';
meta = {
description = "Yori-cc website";
2021-05-29 18:05:31 +02:00
homepage = "https://yorickvanpelt.nl";
2016-01-28 02:59:31 +01:00
maintainers = [ "Yorick" ];
};
}