Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b1823ff8480
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 61cec46f7819
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 1, 2018

  1. Copy the full SHA
    61cec46 View commit details
Showing with 30 additions and 0 deletions.
  1. +28 −0 pkgs/misc/themes/adapta-kde/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
28 changes: 28 additions & 0 deletions pkgs/misc/themes/adapta-kde/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "adapta-kde-theme-${version}";
version = "20180512";

src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "adapta-kde";
rev = version;
sha256 = "1lgpkylhzbayk892inql16sjyy9d3v126f9i1v7qgha1203rwcji";
};

makeFlags = ["PREFIX=$(out)" ];

# Make this a fixed-output derivation
outputHashMode = "recursive";
outputHashAlgo = "sha256";
ouputHash = "0rxhk8sp81vb2mngqr7kn9vlqyliq9aqj2d25igcr01v5axbxbzb";

meta = {
description = "A port of the Adapta theme for Plasma";
homepage = https://git.io/adapta-kde;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.tadfisher ];
platforms = stdenv.lib.platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -738,6 +738,8 @@ with pkgs;

adapta-gtk-theme = callPackage ../misc/themes/adapta { };

adapta-kde-theme = callPackage ../misc/themes/adapta-kde { };

aria2 = callPackage ../tools/networking/aria2 {
inherit (darwin.apple_sdk.frameworks) Security;
};