about summary refs log tree commit diff homepage
path: root/default.nix
blob: aba6cf9cefa8d0c1d0bcc3244da96c4cb3aa1c19 (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)" ];
  buildInputs = [ epeg libxslt ];
  enableParallelBuilding = true;
  meta = {
    homepage = "https://px.cnx.gdn";
    license = lib.licenses.cc-by-sa-40;
  };
}