nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 30 lines 630 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "icingaweb2-theme-april"; 9 version = "1.0.4"; 10 11 src = fetchFromGitHub { 12 owner = "Mikesch-mp"; 13 repo = pname; 14 rev = "v${version}"; 15 sha256 = "0i1js2k47llzgmc77q9frvcmr02mqlhg0qhswx1486fvm6myxg0g"; 16 }; 17 18 installPhase = '' 19 mkdir -p "$out" 20 cp -r * "$out" 21 ''; 22 23 meta = with lib; { 24 description = "Icingaweb2 theme for april fools"; 25 homepage = "https://github.com/Mikesch-mp/icingaweb2-theme-april"; 26 license = licenses.publicDomain; 27 platforms = platforms.all; 28 maintainers = with maintainers; [ das_j ]; 29 }; 30}