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

Commits on Jun 12, 2017

  1. pijul: 0.4.4 -> 0.6.0

    FlorentBecker committed Jun 12, 2017
    Copy the full SHA
    1951578 View commit details
  2. Merge pull request #26527 from FlorentBecker/pijul6

    pijul: 0.4.4 -> 0.6.0
    7c6f434c authored Jun 12, 2017
    Copy the full SHA
    36728c6 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/applications/version-management/pijul/default.nix
12 changes: 6 additions & 6 deletions pkgs/applications/version-management/pijul/default.nix
Original file line number Diff line number Diff line change
@@ -4,21 +4,21 @@ with rustPlatform;

buildRustPackage rec {
name = "pijul-${version}";
version = "0.4.4";
version = "0.6.0";

src = fetchurl {
url = "https://pijul.org/releases/${name}.tar.gz";
sha256 = "8f133b7e14bfa84156c103126d53b12c6dfb996dcdebcf1091199ff9c77f3713";
sha256 = "a6b066b49b25d1083320c5ab23941deee795e1fcbe1faa951e95189fd594cdb3";
};

sourceRoot = "${name}/pijul";
sourceRoot = "pijul";

buildInputs = [ perl ]++ stdenv.lib.optionals stdenv.isDarwin
buildInputs = stdenv.lib.optionals stdenv.isDarwin
(with darwin.apple_sdk.frameworks; [ Security ]);

doCheck = false;
depsSha256 = "1zdvnarg182spgydmqwxxr929j44d771zkq7gyh152173i0xqb20";

depsSha256 = "0raim0ahqg6fkidb6picfzircdzwdbsdmmv8in70r5hw770bv67r";

meta = with stdenv.lib; {
description = "A distributed version control system";