mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #104024 from ryantm/rm-shaarli
shaarli-material: remove package
This commit is contained in:
commit
c12b401432
@ -1,38 +0,0 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "shaarli-material";
|
||||
version = "0.10.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kalvn";
|
||||
repo = "Shaarli-Material";
|
||||
rev = "v${version}";
|
||||
sha256 = "161kf7linyl2l2d7y60v96xz3fwa572fqm1vbm58mjgkzkfndhrv";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
for f in material/*.html
|
||||
do
|
||||
substituteInPlace $f \
|
||||
--replace '.min.css?v={$version_hash}"' '.min.css#"' \
|
||||
--replace '.min.js?v={$version_hash}"' '.min.js#"' \
|
||||
--replace '.png"' '.png#"'
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mv material/ $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
# This package has not been updated for the new build process
|
||||
# introduced in 0.10.3 which depends on npm and gulp.
|
||||
broken = true;
|
||||
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; [ ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -17528,8 +17528,6 @@ julia_15 = callPackage ../development/compilers/julia/1.5.nix {
|
||||
|
||||
shaarli = callPackage ../servers/web-apps/shaarli { };
|
||||
|
||||
shaarli-material = callPackage ../servers/web-apps/shaarli/material-theme.nix { };
|
||||
|
||||
shiori = callPackage ../servers/web-apps/shiori { };
|
||||
|
||||
inherit (callPackages ../servers/web-apps/matomo {})
|
||||
|
Loading…
Reference in New Issue
Block a user