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

Commits on Mar 6, 2020

  1. Copy the full SHA
    450f8fa View commit details

Commits on Mar 8, 2020

  1. Merge pull request #81878 from r-ryantm/auto-update/dpic

    dpic: 2019.11.30 -> 2020.03.01
    ryantm authored Mar 8, 2020
    Copy the full SHA
    6b6f9d7 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/graphics/dpic/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/graphics/dpic/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "dpic";
version = "2019.11.30";
version = "2020.03.01";

src = fetchurl {
url = "https://ece.uwaterloo.ca/~aplevich/dpic/${pname}-${version}.tar.gz";
sha256 = "0rgd31mdbaqbm9rz49872s17n25n5ajxcn61xailz3f0kzr4f3dg";
sha256 = "1wa1b8m98wdyryf0czn5g3g50znrjcdhsrzpqp6zgwr5w4a086mj";
};

phases = [ "unpackPhase" "buildPhase" "installPhase" ];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
'';

meta = {
homepage = https://ece.uwaterloo.ca/~aplevich/dpic/;
homepage = "https://ece.uwaterloo.ca/~aplevich/dpic/";
description = "An implementation of the pic little language for creating drawings";
license = stdenv.lib.licenses.bsd2;
maintainers = [ stdenv.lib.maintainers.aespinosa ];