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: 49d4668ff753
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 13477c7f3ba3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 30, 2019

  1. paps: init at 0.7.0

    etu committed Mar 30, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    etu Elis Hirwing
    Copy the full SHA
    a34f698 View commit details
  2. Merge pull request #58579 from etu/init-paps

    paps: init at 0.7.0
    markuskowa authored Mar 30, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    13477c7 View commit details
Showing with 31 additions and 0 deletions.
  1. +29 −0 pkgs/tools/misc/paps/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
29 changes: 29 additions & 0 deletions pkgs/tools/misc/paps/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub
, autoconf, automake, pkgconfig, pango }:

stdenv.mkDerivation rec {
pname = "paps";
version = "0.7.0";

src = fetchFromGitHub {
owner = "dov";
repo = pname;
rev = version;
sha256 = "1f0qcawak76zk2xypipb6sy4bd8mixlrjby851x216a7f6z8fd4y";
};

nativeBuildInputs = [ autoconf automake pkgconfig ];
buildInputs = [ pango ];

preConfigure = ''
./autogen.sh
'';

meta = with stdenv.lib; {
description = "Pango to PostScript converter";
homepage = https://github.com/dov/paps;
license = licenses.lgpl2;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -15970,6 +15970,8 @@ in

papis = callPackage ../tools/misc/papis { };

paps = callPackage ../tools/misc/paps { };

pecita = callPackage ../data/fonts/pecita {};

paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};