Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 38 lines 728 B view raw
1{ 2 lib, 3 nixosTests, 4 stdenv, 5 fetchFromGitHub, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "tt-rss-theme-feedly"; 10 version = "4.1.0"; 11 12 src = fetchFromGitHub { 13 owner = "levito"; 14 repo = "tt-rss-feedly-theme"; 15 rev = "v${version}"; 16 sha256 = "sha256-3mD1aY7gjdvucRzY7sLmZ1RsHtraAg1RGE/3uDp6/o4="; 17 }; 18 19 dontBuild = true; 20 21 installPhase = '' 22 mkdir $out 23 24 cp -ra feedly *.css $out 25 ''; 26 27 passthru = { 28 tests = { inherit (nixosTests) tt-rss; }; 29 }; 30 31 meta = with lib; { 32 description = "Feedly theme for Tiny Tiny RSS"; 33 license = licenses.mit; 34 homepage = "https://github.com/levito/tt-rss-feedly-theme"; 35 maintainers = with maintainers; [ das_j ]; 36 platforms = platforms.all; 37 }; 38}