aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-12-29 11:27:27 +0100
committerAdrian Kummerlaender2022-12-29 11:27:27 +0100
commit7d41e83b4f62c8f79be4a0e984a11941d55e66dc (patch)
tree11a2bf33ce4729f063e78005a8c0fba74bf51026 /default.nix
parent6d353960542e5c95f29d45b9359db25945a414a4 (diff)
downloadInputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar.gz
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar.bz2
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar.lz
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar.xz
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.tar.zst
InputXSLT-7d41e83b4f62c8f79be4a0e984a11941d55e66dc.zip
Replace default.nix by flakeHEADmaster
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/default.nix b/default.nix
deleted file mode 100644
index 38f3d65..0000000
--- a/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ system ? builtins.currentSystem }:
-
-let
- pkgs = import <nixpkgs> { inherit system; };
- stdenv = pkgs.stdenv;
-
-in stdenv.mkDerivation rec {
- name = "input-xslt";
-
- src = pkgs.lib.cleanSource ./.;
-
- buildInputs = with pkgs; [
- cmake boost xalanc xercesc discount
- ];
-
- meta = with stdenv.lib; {
- description = "InputXSLT";
- homepage = https://tree.kummerlaender.eu/projects/xslt/input_xslt/;
- license = stdenv.lib.licenses.asl20;
- };
-
- shellHook = ''
- export NIX_SHELL_NAME="${name}"
- '';
-}