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: be1461fc0ab2
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: a22ba5f05b3f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 2, 2018

  1. krename: 20170610 -> 5.0.0

    peterhoeg committed Jul 2, 2018
    Copy the full SHA
    a22ba5f View commit details
Showing with 6 additions and 7 deletions.
  1. +6 −7 pkgs/applications/misc/krename/default.nix
13 changes: 6 additions & 7 deletions pkgs/applications/misc/krename/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
{
mkDerivation, fetchFromGitHub, lib,
mkDerivation, fetchurl, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
kconfig, kinit, kjsembed, taglib, exiv2, podofo,
kcrash
}:

let
pname = "krename";
version = "20170610";
version = "5.0.0";

in mkDerivation rec {
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "KDE";
repo = "krename";
rev = "18000edfec52de0b417d575e14eb078b4bd7b2f3";
sha256 = "0hsrlfrbi42jqqnkcz682c6yrfi3xpl299672knj22074wr6sv0j";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "136j1dkqrhv458rjh5v3vzjhvq6dhz7k79zk6mmx8zvqacc7cq8a";
};

meta = with lib; {