Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1851d52633aa
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a607a931f6f7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 5, 2019

  1. elisa: 0.3.0 -> 0.4.2

    Also fixes #50726
    peterhoeg committed Jul 5, 2019
    Copy the full SHA
    799a18f View commit details

Commits on Jul 22, 2019

  1. Merge pull request #64327 from peterhoeg/u/elisa_stable

    elisa: 0.3.0 -> 0.4.2
    peterhoeg authored Jul 22, 2019
    Copy the full SHA
    a607a93 View commit details
Showing with 8 additions and 6 deletions.
  1. +8 −6 pkgs/applications/audio/elisa/default.nix
14 changes: 8 additions & 6 deletions pkgs/applications/audio/elisa/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
{ mkDerivation, fetchFromGitHub, lib
, extra-cmake-modules, kdoctools, wrapGAppsHook
, qtmultimedia, qtquickcontrols2, qtwebsockets
, kconfig, kcmutils, kcrash, kdeclarative, kfilemetadata, kinit
, baloo
, kconfig, kcmutils, kcrash, kdeclarative, kfilemetadata, kinit, kirigami2
, baloo, vlc
}:

mkDerivation rec {
name = "elisa-${version}";
version = "0.3.0";
pname = "elisa";
version = "0.4.2";

src = fetchFromGitHub {
owner = "KDE";
repo = "elisa";
rev = "v${version}";
sha256 = "0bpkr5rp9nfa2wzm6w3xkhsfgf5dbgxbmhckjh9wkxal3mncpkg4";
sha256 = "0q098zaajwbpkrarrsdzpjhpsq2nxkqaxwzhr2gjlg08j9vqkpfm";
};

buildInputs = [ vlc ];

nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];

propagatedBuildInputs = [
qtmultimedia qtquickcontrols2 qtwebsockets
kconfig kcmutils kcrash kdeclarative kfilemetadata kinit
kconfig kcmutils kcrash kdeclarative kfilemetadata kinit kirigami2
baloo
];