1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
nixpkgs/pkgs/servers/web-apps/shaarli/material-theme.nix

36 lines
907 B
Nix
Raw Normal View History

2017-01-18 18:49:23 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "shaarli-material";
2019-08-06 13:07:45 +01:00
version = "0.10.4";
2017-01-18 18:49:23 +00:00
src = fetchFromGitHub {
owner = "kalvn";
repo = "Shaarli-Material";
rev = "v${version}";
2019-08-06 13:07:45 +01:00
sha256 = "161kf7linyl2l2d7y60v96xz3fwa572fqm1vbm58mjgkzkfndhrv";
2017-01-18 18:49:23 +00:00
};
patchPhase = ''
for f in material/*.html
do
substituteInPlace $f \
2018-03-31 11:27:17 +01:00
--replace '.min.css?v={$version_hash}"' '.min.css#"' \
--replace '.min.js?v={$version_hash}"' '.min.js#"' \
2017-01-18 18:49:23 +00:00
--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;
};
}