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: c54bb4e98ed1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3bf8df2877f0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 9, 2020

  1. librepcb: 0.1.4 -> 0.1.5

    Luz authored and alyssais committed Nov 9, 2020
    Copy the full SHA
    3bf8df2 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/science/electronics/librepcb/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/science/electronics/librepcb/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib, mkDerivation, fetchFromGitHub, qtbase, qttools, qmake, wrapQtAppsHook }:

mkDerivation {
mkDerivation rec {
pname = "librepcb";
version = "0.1.4";
version = "0.1.5";

src = fetchFromGitHub {
owner = "LibrePCB";
repo = "LibrePCB";
fetchSubmodules = true;
rev = "ae04eef5a71b5ba66ae2cee6b631c1c933ace535";
sha256 = "0wk5qny1jb6n4mwyyrs7syir3hmwxlwazcd80bpxharmsj7p0rzc";
rev = version;
sha256 = "0ag8h3id2c1k9ds22rfrvyhf2vjhkv82xnrdrz4n1hnlr9566vcx";
};

enableParallelBuilding = true;