catlist plugin for dokuwiki
This commit is contained in:
parent
5d23db8e14
commit
ecfc58fecd
1 changed files with 15 additions and 0 deletions
|
@ -103,6 +103,21 @@ in
|
|||
cp -R * $out/
|
||||
'';
|
||||
})
|
||||
(pkgs.stdenv.mkDerivation {
|
||||
name = "catlist";
|
||||
# Download the theme from the dokuwiki site
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "xif-fr";
|
||||
repo = "dokuwiki-plugin-catlist";
|
||||
rev = "065f8d2f4817409989b9342b901163452fb9f547";
|
||||
sha256 = "1l7bvnqkai8qkqqb67w8yy7fbs30dviqc36pyqggzfjhi558i9ih";
|
||||
};
|
||||
# Installing simply means copying all files to the output directory
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -R * $out/
|
||||
'';
|
||||
})
|
||||
];
|
||||
};
|
||||
# On veut php-xml
|
||||
|
|
Loading…
Reference in a new issue