about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/dpic/default.nix
blob: f21b84c152180cafad1f1c54ba606dc6e06d60fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "dpic";
  version = "2016.01.12";

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

  phases = [ "unpackPhase" "buildPhase" "installPhase" ];

  makeFlags = "CC=${stdenv.cc.outPath}/bin/cc";

  installPhase = ''
    mkdir -p $out/bin
    cp -fv dpic $out/bin
  '';

  meta = {
    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 ];
    platforms = stdenv.lib.platforms.all;
  };
}