Ignore compiled .nix

This commit is contained in:
Gregor Kleen 2018-01-15 14:00:01 +01:00
parent 29c0e9a325
commit b6397f2348
3 changed files with 5 additions and 22 deletions

6
.gitignore vendored
View File

@ -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

View File

@ -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;
}

View File

@ -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;
}