about summary refs log tree commit diff homepage
path: root/default.nix
blob: 682a06b42c4430e67baef94295f5a897d14a6e9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ epeg, lib, libxslt, nix-gitignore, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
  pname = "px.cnx.gdn";
  version = "latest";
  src = nix-gitignore.gitignoreSource [ ] ./.;
  makeFlags = [ "PREFIX=$(out)" ];
  nativeBuildInputs = [ epeg libxslt ];
  enableParallelBuilding = true;
  meta = {
    homepage = "https://px.cnx.gdn";
    license = lib.licenses.cc-by-sa-40;
  };
}