mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
36 lines
880 B
Nix
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;
|
|
};
|
|
}
|