Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 47 lines 857 B view raw
1{ lib 2, stdenv 3, fetchFromGitHub 4, gdk-pixbuf 5, gtk-engine-murrine 6, gtk_engines 7, librsvg 8}: 9 10stdenv.mkDerivation rec { 11 pname = "venta"; 12 version = "0.7.1"; 13 14 src = fetchFromGitHub { 15 owner = "darkomarko42"; 16 repo = pname; 17 rev = version; 18 sha256 = "14ckkvyarq1xmf48fh47by5h3jnkmksj2n4y6zvx3aw7pfg2jc51"; 19 }; 20 21 buildInputs = [ 22 gdk-pixbuf 23 gtk_engines 24 librsvg 25 ]; 26 27 propagatedUserEnvPkgs = [ 28 gtk-engine-murrine 29 ]; 30 31 dontBuild = true; 32 33 installPhase = '' 34 runHook preInstall 35 mkdir -p $out/share/themes 36 cp -a Venta* $out/share/themes 37 runHook postInstall 38 ''; 39 40 meta = with lib; { 41 description = "Gtk theme based on windows 10 style"; 42 homepage = "https://www.pling.com/p/1386774/"; 43 license = licenses.gpl3Only; 44 platforms = platforms.unix; 45 maintainers = [ maintainers.romildo ]; 46 }; 47}