nixpkgs/pkgs/servers/web-apps/shaarli/material-theme.nix
2017-10-22 00:05:15 +02:00

36 lines
880 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shaarli-material-${version}";
version = "0.9.1";
src = fetchFromGitHub {
owner = "kalvn";
repo = "Shaarli-Material";
rev = "v${version}";
sha256 = "0x8d9425n3jrwzsyxclbxfspvi91v1klq8r3m6wcj81kys7vmzgh";
};
patchPhase = ''
for f in material/*.html
do
substituteInPlace $f \
--replace '.min.css"' '.min.css#"' \
--replace '.min.js"' '.min.js#"' \
--replace '.png"' '.png#"'
done
'';
installPhase = ''
mv material/ $out
'';
meta = with stdenv.lib; {
description = "A theme base on Google's Material Design for Shaarli, the superfast delicious clone";
license = licenses.mit;
homepage = https://github.com/kalvn/Shaarli-Material;
maintainers = with maintainers; [ schneefux ];
platforms = platforms.all;
};
}