1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 04:11:07 +01:00

chore: move more to NUR

This commit is contained in:
Kierán Meinhardt
2020-04-09 18:12:45 +02:00
parent ebaff40268
commit 8890b30e5f
13 changed files with 3 additions and 190 deletions

View File

@@ -1,15 +0,0 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "text2pdf";
version = "1.1";
src = fetchurl {
url = "http://www.eprg.org/pdfcorner/text2pdf/text2pdf.c";
sha256 = "002nyky12vf1paj7az6j6ra7lljwkhqzz238v7fyp7sfgxw0f7d1";
};
phases = [ "buildPhase" ];
buildPhase = ''
mkdir -p $out/bin
gcc -o $out/bin/text2pdf $src
'';
}