summary refs log tree commit diff
path: root/pkgs/development/libraries/libpaper/default.nix
blob: 9505a6cf052fd2945d29a4c5b505eef92c77acce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "1.1.24";
  name = "libpaper-${version}";

  src = fetchurl {
    url = "mirror://debian/pool/main/libp/libpaper/libpaper_${version}.tar.gz";
    sha256 = "0zhcx67afb6b5r936w5jmaydj3ks8zh83n9rm5sv3m3k8q8jib1q";
  };

  meta = {
    description = "Library for handling paper characteristics";
    homepage = "http://packages.debian.org/unstable/source/libpaper";
    license = "GPLv2";
  };
}