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: 428eef67fd9c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f482ff9deb5a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 15, 2018

  1. umlet: 14.2 -> 14.3

    oxzi committed Nov 15, 2018
    Copy the full SHA
    dfa5820 View commit details
  2. Merge pull request #50391 from geistesk/umlet-14-3

    umlet: 14.2 -> 14.3
    markuskowa authored Nov 15, 2018
    Copy the full SHA
    f482ff9 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/umlet/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/umlet/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
major = "14";
minor = "2";
version = "${major}.${minor}";
minor = "3";
version = "${major}.${minor}.0";
name = "umlet-${version}";

src = fetchurl {
url = "http://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip";
sha256 = "1fcc7ms92vcc4b8jh56bd3zrqdb0bwhbbzdxycc952fb0j6m62fw";
sha256 = "0jfyxjxsjx29xhs3fl0f574nyncmk9j5jp8zlgd401mcaznn9c7l";
};

buildInputs = [ unzip ];
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.umlet.com;
license = licenses.gpl3;
maintainers = [ ];
maintainers = with maintainers; [ geistesk ];
platforms = platforms.all;
};
}