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";
rev = "68c75ab84cceaf98dd8fd0646b97d73f966b8962";
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" ];
};
}