summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/sfo/default.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/sfo/default.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/sfo/default.nix')
-rw-r--r--makefu/5pkgs/sfo/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/makefu/5pkgs/sfo/default.nix b/makefu/5pkgs/sfo/default.nix
deleted file mode 100644
index 3cb7d3d7..00000000
--- a/makefu/5pkgs/sfo/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, curl
-}:
-stdenv.mkDerivation rec {
- name = "sfo";
- version = "1.02";
-
- src = fetchFromGitHub {
- owner = "hippie68";
- repo = "sfo";
- rev = "b38cf18d8a5c60a7f05a604b8a67215b7fb67e0a";
- sha256 = "141yyd5lgdz5vbghl3ncaxh3nvv6p03gks0ib3dnrif1lpbbj9ai";
- };
-
- buildInputs = [ curl.dev ];
- buildPhase = ''
- gcc sfo.c -o sfo
- '';
- installPhase = ''
- install -D sfo $out/bin/sfo
- '';
-
- meta = {
- description = "program that reads a file to print or modify its SFO parameters";
- homepage = "https://github.com/hippie68/sfo";
- license = lib.licenses.gpl3;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ makefu ];
- };
-}