From b6397f234849a192dc5585d30c15186b89b0081c Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Mon, 15 Jan 2018 14:00:01 +0100 Subject: [PATCH] Ignore compiled .nix --- .gitignore | 6 +++++- cryptoids-types/cryptoids-types.nix | 8 -------- cryptoids/cryptoids.nix | 13 ------------- 3 files changed, 5 insertions(+), 22 deletions(-) delete mode 100644 cryptoids-types/cryptoids-types.nix delete mode 100644 cryptoids/cryptoids.nix diff --git a/.gitignore b/.gitignore index 74630bf..ea2592b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ **/.gup **/result* **/.stack-work -uuid-crypto.nix **/dist + +cryptoids/cryptoids.nix +cryptoids-types/cryptoids-types.nix +filepath-crypto/filepath-crypto.nix +uuid-crypto/uuid-crypto.nix diff --git a/cryptoids-types/cryptoids-types.nix b/cryptoids-types/cryptoids-types.nix deleted file mode 100644 index 488252f..0000000 --- a/cryptoids-types/cryptoids-types.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ mkDerivation, base, binary, http-api-data, path-pieces, stdenv }: -mkDerivation { - pname = "cryptoids-types"; - version = "0.0.0"; - src = ./.; - libraryHaskellDepends = [ base binary http-api-data path-pieces ]; - license = stdenv.lib.licenses.bsd3; -} diff --git a/cryptoids/cryptoids.nix b/cryptoids/cryptoids.nix deleted file mode 100644 index 8ed59e5..0000000 --- a/cryptoids/cryptoids.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ mkDerivation, base, binary, bytestring, cryptoids-types -, cryptonite, memory, stdenv -}: -mkDerivation { - pname = "cryptoids"; - version = "0.0.0"; - src = ./.; - libraryHaskellDepends = [ - base binary bytestring cryptoids-types cryptonite memory - ]; - description = "Reversable and secure encoding of object ids as a bytestring"; - license = stdenv.lib.licenses.bsd3; -}