Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 30 lines 679 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "icingaweb2-theme-spring"; 9 version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "Mikesch-mp"; 13 repo = pname; 14 rev = "v${version}"; 15 sha256 = "09v4871pndarhm2spxm9fdab58l5wj8m40kh53wvk1xc3g7pqki9"; 16 }; 17 18 installPhase = '' 19 mkdir -p "$out" 20 cp -r * "$out" 21 ''; 22 23 meta = with lib; { 24 description = "Theme with some soft colors and nice background images loaded from unsplash.com"; 25 homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-spring"; 26 license = licenses.publicDomain; 27 platforms = platforms.all; 28 maintainers = with maintainers; [ das_j ]; 29 }; 30}